├── .gitignore ├── LICENSE.md ├── Makedll ├── Makeexe ├── Makefile ├── Makepkg ├── NEWS.md ├── ONEWS ├── README.md ├── TODO ├── VERSION ├── configure ├── distribs ├── README ├── README.Debian ├── md5 ├── yorick.info ├── yorick.spec └── yorick │ ├── Makefile │ ├── distinfo │ ├── pkg-descr │ ├── pkg-install │ └── pkg-plist ├── doc ├── FILE_FORMATS ├── Makefile ├── README ├── gist.1 ├── html │ ├── Makefile │ ├── README │ ├── README-install.html.content │ ├── aliases.txt │ ├── htmldoc.i │ ├── images │ │ ├── a_begin.gif │ │ ├── a_begin_na.gif │ │ ├── a_end.gif │ │ ├── a_end_na.gif │ │ ├── a_help.gif │ │ ├── a_help_na.gif │ │ ├── a_index.gif │ │ ├── a_index_na.gif │ │ ├── a_left.gif │ │ ├── a_left_na.gif │ │ ├── a_leftdouble.gif │ │ ├── a_leftdouble_na.gif │ │ ├── a_right.gif │ │ ├── a_right_na.gif │ │ ├── a_rightdouble.gif │ │ ├── a_rightdouble_na.gif │ │ ├── a_tableofcon.gif │ │ ├── a_tableofcon_na.gif │ │ ├── a_top.gif │ │ ├── a_top_na.gif │ │ ├── a_up.gif │ │ ├── a_up_na.gif │ │ ├── skull_down.jpeg │ │ ├── skull_up.jpeg │ │ ├── star-bullet-s1.png │ │ ├── triangle2.jpg │ │ ├── triangle2inv.jpg │ │ └── triangle3.jpg │ ├── keywords.txt │ ├── make-doc.i │ ├── packinfo.txt │ ├── skull.css │ ├── style.css │ ├── template.html │ └── texi2html.tpl ├── maked.i ├── refs-html │ ├── index.html │ ├── qrfunc00.html │ ├── qrfunc01.html │ ├── qrfunc02.html │ ├── qrfunc03.html │ ├── qrfunc04.html │ ├── qrfunc05.html │ ├── qrfunc06.html │ ├── qrfunc07.html │ ├── qrfunc08.html │ ├── qrfunc09.html │ ├── qrfunc10.html │ ├── qrfunc11.html │ ├── qrfunc12.html │ ├── qrfunc13.html │ ├── qrfunc14.html │ ├── qrfunc15.html │ ├── qrfunc16.html │ ├── qrio00.html │ ├── qrio01.html │ ├── qrio02.html │ ├── qrio03.html │ ├── qrio04.html │ ├── qrio05.html │ ├── qrio06.html │ ├── qrio07.html │ ├── qrio08.html │ ├── qrio09.html │ ├── qrio10.html │ ├── qrio11.html │ ├── qrio12.html │ ├── qrio13.html │ ├── qrlang00.html │ ├── qrlang01.html │ ├── qrlang02.html │ ├── qrlang03.html │ ├── qrlang04.html │ ├── qrlang05.html │ ├── qrlang06.html │ ├── qrlang07.html │ ├── qrlang08.html │ ├── qrlang09.html │ ├── qrlang10.html │ ├── qrlang11.html │ ├── qrlang12.html │ ├── qrlang13.html │ ├── qrlang14.html │ ├── qrlang15.html │ ├── qrlang16.html │ └── qrlang17.html ├── refs.pdf ├── refs.tex ├── yorick.1 ├── yorick.pdf └── yorick.tex ├── drat ├── Makefile ├── README ├── bound.c ├── bound.h ├── drat.c ├── drat.h ├── drat.i ├── dratt.i ├── track.c ├── track.h ├── trans.c ├── trans.h └── ydrat.c ├── emacs ├── README ├── yorick-auto.el └── yorick.el ├── extend ├── cerfc.c └── cerfc.i ├── extendf ├── ferfc.f └── ferfc.i ├── fft ├── Makefile ├── README ├── cfft.h ├── cfft2.c ├── cfftb.c ├── cfftf.c ├── cffti.c └── roll2.c ├── g ├── README ├── axes.gs ├── boxed.gs ├── boxed2.gs ├── coolwarm.gp ├── earth.gp ├── gray.gp ├── heat.gp ├── inferno.gp ├── l_nobox.gs ├── magma.gp ├── ncar.gp ├── nobox.gs ├── plasma.gp ├── ps.ps ├── pscom.ps ├── rainbow.gp ├── stern.gp ├── vg.gs ├── vgbox.gs ├── viridis.gp ├── work.gs ├── work2.gs └── yarg.gp ├── gist ├── .gitignore ├── EXTERNS ├── Makefile ├── README ├── README.B ├── bench.c ├── browser.c ├── cgm.c ├── cgm.h ├── cgmin.c ├── cgmin.h ├── clip.c ├── clip.h ├── draw.c ├── draw.h ├── draw0.c ├── engine.c ├── engine.h ├── eps.c ├── eps.h ├── gcntr.c ├── gist.c ├── gist.h ├── gread.c ├── gtext.c ├── gtext.h ├── hlevel.c ├── hlevel.h ├── ps.c ├── ps.h ├── tick.c ├── tick60.c ├── xbasic.c ├── xbasic.h ├── xfancy.c └── xfancy.h ├── hex ├── Makefile ├── NOTES ├── README ├── hex.c ├── hex.h ├── hex.i ├── hex24.c ├── hex5.c ├── hydram.c ├── hydram.h ├── regul.c ├── regul.h ├── store.c ├── test.i ├── tools.c ├── tools.h ├── yhex.c └── ylmdec.i ├── i-start ├── 50i.i ├── 70drat.i ├── 70hex.i ├── 90pkg_mngr.i └── README ├── i ├── README ├── basfix.i ├── bessel.i ├── bezier.i ├── bowtie.i ├── button.i ├── calendar.i ├── cheby.i ├── cie.i ├── cmap.i ├── collec.i ├── color.i ├── convol.i ├── copyb.i ├── custom.i ├── dawson.i ├── demo1.i ├── demo2.i ├── demo3.i ├── demo4.i ├── demo5.i ├── dichromat.i ├── digit2.i ├── ellipse.i ├── elliptic.i ├── fermi.i ├── fermii.i ├── filter.i ├── fitlsq.i ├── fitrat.i ├── fits.i ├── gamma.i ├── gammp.i ├── gcd.i ├── hsv2rgb.i ├── hydra.i ├── idlsave.i ├── ieee.i ├── kepler.i ├── lab2rgb.i ├── legndr.i ├── levmar.i ├── make.i ├── md5.i ├── mkdoc.i ├── movie.i ├── msort.i ├── multi.i ├── netcdf.i ├── pathfun.i ├── pixels.i ├── pkg_mngr.i ├── pl3d.i ├── plato.i ├── plclab.i ├── plwf.i ├── pnm.i ├── prefix.i ├── random.i ├── rays.i ├── rcheby.i ├── readn.i ├── regress.i ├── rezone.i ├── rkutta.i ├── romberg.i ├── roots.i ├── series.i ├── show.i ├── silo.i ├── slice3.i ├── spanarc.i ├── spline.i ├── splinef.i ├── string.i ├── style.i ├── sysafe.i ├── test1.i ├── test2.i ├── test3.i ├── testb.i ├── testfull.i ├── testg.i ├── testlp.i ├── testm.i ├── testoxy.i ├── testp.i ├── testsock.i ├── teststr.i ├── textload.i ├── torgb.i ├── txpath.i ├── unsigned.i ├── ylm.i └── zroots.i ├── i0 ├── README ├── fft.i ├── graph.i ├── matrix.i ├── paths.i ├── std.i └── stdx.i ├── icons ├── yicon16.bmp ├── yicon16.png ├── yicon32.bmp ├── yicon32.png ├── yicon48.bmp ├── yicon48.gif ├── yicon48.png ├── yicon48.xpm └── yorick.ico ├── install.rel ├── instally.sh ├── math ├── README ├── heapsort.c ├── heapsort.h ├── lecuyer.c └── lecuyer.h ├── matrix ├── Makefile ├── README ├── cblasy.c ├── cblasy.h ├── cxerbla.c ├── dbdsqr.c ├── dg.h ├── dgecon.c ├── dgels.c ├── dgelss.c ├── dgesv.c ├── dgesv2.c ├── dgesvd.c ├── dgtsv.c ├── dgyor.c ├── dlamc3.c └── dlasr.c ├── mpy ├── .gitignore ├── Makefile ├── README ├── configure ├── custommp.i ├── mpicc-sh ├── mpool.i ├── mpy-sh ├── mpy.1 ├── mpy.c ├── mpy.h ├── mpy.i ├── mpy1.i ├── mpyfile.c └── testmp.i ├── opengl ├── README ├── README.gl ├── README.glx ├── README.t3d ├── configgl.sh ├── oglw.c ├── oglx.c ├── playgl.h └── test3d.c ├── play ├── .gitignore ├── Makefile ├── README ├── any │ ├── Makefile │ ├── README.t2d │ ├── alarms.c │ ├── bitlrot.c │ ├── bitmrot.c │ ├── bitrev.c │ ├── hash.c │ ├── hash0.c │ ├── hashctx.c │ ├── hashid.c │ ├── hashtest.c │ ├── mm.c │ ├── mminit.c │ ├── mmtest.c │ ├── numfmt.c │ ├── p595.c │ ├── pmemcpy.c │ ├── psoftfpe.c │ ├── pstdio.c │ ├── pstrcpy.c │ ├── pstrncat.c │ └── test2d.c ├── hacks │ ├── MacOS103.bug │ ├── Makefile │ ├── README │ ├── hack103.c │ └── hack103.h ├── phash.h ├── play.h ├── plugin.h ├── pmin.h ├── pstdio.h ├── pstdlib.h ├── unix │ ├── .gitignore │ ├── Makefile │ ├── PLUGIN.txt │ ├── README │ ├── README.cfg │ ├── README.fpu │ ├── README.gtk │ ├── config.c │ ├── config.sh │ ├── cygyor.def │ ├── dir.c │ ├── files.c │ ├── fpuset.c │ ├── fputest.c │ ├── handler.c │ ├── pathnm.c │ ├── playu.h │ ├── pmain.c │ ├── slinks.c │ ├── stdinit.c │ ├── timeu.c │ ├── timew.c │ ├── udl.c │ ├── udltest.c │ ├── uevent.c │ ├── ugetc.c │ ├── ugetc.h │ ├── uinbg.c │ ├── umain.c │ ├── upoll.c │ ├── upoll.h │ ├── usernm.c │ ├── usock.c │ └── uspawn.c ├── win │ ├── DLLHOWTO │ ├── Make.win │ ├── Makefile │ ├── clips.c │ ├── config.h │ ├── conterm.c │ ├── cursors.c │ ├── cygapp.c │ ├── cygmain.c │ ├── dir.c │ ├── ellipse.c │ ├── feep.c │ ├── files.c │ ├── getdc.c │ ├── handler.c │ ├── mfcapp.cpp │ ├── mfcapp.h │ ├── mfcmain.cpp │ ├── mfcres.h │ ├── mfcterm.cpp │ ├── mfcterm.h │ ├── pals.c │ ├── pathnm.c │ ├── pcell.c │ ├── pfill.c │ ├── playw.h │ ├── playwin.h │ ├── plines.c │ ├── pmin.c │ ├── points.c │ ├── prect.c │ ├── pscr.c │ ├── ptext.c │ ├── pwin.c │ ├── sigansi.c │ ├── sigseh.c │ ├── timeu.c │ ├── timew.c │ ├── usernm.c │ ├── wdl.c │ ├── wpoll.c │ ├── wpopen.c │ ├── wsock.c │ ├── wspawn.c │ └── wstdio.c ├── x11 │ ├── Makefile │ ├── README │ ├── README.x11 │ ├── clips.c │ ├── colors.c │ ├── connect.c │ ├── cursors.c │ ├── ellipse.c │ ├── errors.c │ ├── events.c │ ├── feep.c │ ├── fills.c │ ├── fonts.c │ ├── images.c │ ├── lines.c │ ├── pals.c │ ├── playwin.h │ ├── playx.h │ ├── points.c │ ├── pwin.c │ ├── rect.c │ ├── resource.c │ ├── rgbread.c │ ├── textout.c │ └── xconfig.sh └── yversion.h ├── regexp ├── Makefile ├── README ├── yfnmatch.c ├── yfnmatch.h ├── yregexp.c └── yregexp.h ├── win ├── .gitignore ├── README ├── bench.vcxproj ├── browser.rc ├── browser.vcxproj ├── codger.vcxproj ├── drat.vcxproj ├── gist.vcxproj ├── hex.vcxproj ├── makeidef.c ├── makeinit.bat ├── makewdef.c ├── numfmt.vcxproj ├── play.vcxproj ├── setup.vcxproj ├── test2d.vcxproj ├── test3d.vcxproj ├── yflat.vcxproj ├── ylogo16.bmp ├── ylogo32.bmp ├── ylogo48.bmp ├── yorick.ico ├── yorick.rc ├── yorick.sln ├── yorick.vcxproj └── yorlib.vcxproj ├── yorapi.sh ├── yorick ├── .gitignore ├── Makefile ├── NOTES-1.5 ├── NOTES-1.6 ├── README ├── array.c ├── ascio.c ├── autold.c ├── bcast.c ├── bcast.h ├── binio.c ├── binio.h ├── binobj.c ├── binpdb.c ├── binstd.c ├── cache.c ├── check.i ├── clog.c ├── codger.c ├── convrt.c ├── debug.c ├── defmem.c ├── defmem.h ├── dlsym.c ├── fnctn.c ├── fortrn.c ├── funcdef.c ├── fwrap.c ├── graph.c ├── graph0.c ├── hash.h ├── install.sh ├── libdep.sh ├── list.c ├── mdigest.c ├── mdigest.h ├── nonc.c ├── ops.c ├── ops0.c ├── ops1.c ├── ops2.c ├── ops3.c ├── opsv.c ├── oxy.c ├── parse.c ├── parse.h ├── parsre.c ├── pathfun.c ├── range.c ├── socky.c ├── spawn.c ├── std0.c ├── std1.c ├── std2.c ├── style.c ├── task.c ├── yapi.c ├── yapi.h ├── yasync.h ├── yconfig.sh ├── yconfigf.sh ├── ydata.c ├── ydata.h ├── yhash.c ├── yinput.c ├── yio.c ├── yio.h ├── yorick.c ├── yrdwr.c └── ystr.c └── ysite.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makedll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/Makedll -------------------------------------------------------------------------------- /Makeexe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/Makeexe -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/Makefile -------------------------------------------------------------------------------- /Makepkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/Makepkg -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/NEWS.md -------------------------------------------------------------------------------- /ONEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/ONEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/TODO -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.2 2 | 04x 3 | -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/configure -------------------------------------------------------------------------------- /distribs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/distribs/README -------------------------------------------------------------------------------- /distribs/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/distribs/README.Debian -------------------------------------------------------------------------------- /distribs/md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/distribs/md5 -------------------------------------------------------------------------------- /distribs/yorick.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/distribs/yorick.info -------------------------------------------------------------------------------- /distribs/yorick.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/distribs/yorick.spec -------------------------------------------------------------------------------- /distribs/yorick/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/distribs/yorick/Makefile -------------------------------------------------------------------------------- /distribs/yorick/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/distribs/yorick/distinfo -------------------------------------------------------------------------------- /distribs/yorick/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/distribs/yorick/pkg-descr -------------------------------------------------------------------------------- /distribs/yorick/pkg-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/distribs/yorick/pkg-install -------------------------------------------------------------------------------- /distribs/yorick/pkg-plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/distribs/yorick/pkg-plist -------------------------------------------------------------------------------- /doc/FILE_FORMATS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/FILE_FORMATS -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/README -------------------------------------------------------------------------------- /doc/gist.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/gist.1 -------------------------------------------------------------------------------- /doc/html/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/Makefile -------------------------------------------------------------------------------- /doc/html/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/README -------------------------------------------------------------------------------- /doc/html/README-install.html.content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/README-install.html.content -------------------------------------------------------------------------------- /doc/html/aliases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/aliases.txt -------------------------------------------------------------------------------- /doc/html/htmldoc.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/htmldoc.i -------------------------------------------------------------------------------- /doc/html/images/a_begin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/a_begin.gif -------------------------------------------------------------------------------- /doc/html/images/a_begin_na.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/a_begin_na.gif -------------------------------------------------------------------------------- /doc/html/images/a_end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/a_end.gif -------------------------------------------------------------------------------- /doc/html/images/a_end_na.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/a_end_na.gif -------------------------------------------------------------------------------- /doc/html/images/a_help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/a_help.gif -------------------------------------------------------------------------------- /doc/html/images/a_help_na.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/a_help_na.gif -------------------------------------------------------------------------------- /doc/html/images/a_index.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/a_index.gif -------------------------------------------------------------------------------- /doc/html/images/a_index_na.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/a_index_na.gif -------------------------------------------------------------------------------- /doc/html/images/a_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/a_left.gif -------------------------------------------------------------------------------- /doc/html/images/a_left_na.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/a_left_na.gif -------------------------------------------------------------------------------- /doc/html/images/a_leftdouble.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/a_leftdouble.gif -------------------------------------------------------------------------------- /doc/html/images/a_leftdouble_na.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/a_leftdouble_na.gif -------------------------------------------------------------------------------- /doc/html/images/a_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/a_right.gif -------------------------------------------------------------------------------- /doc/html/images/a_right_na.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/a_right_na.gif -------------------------------------------------------------------------------- /doc/html/images/a_rightdouble.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/a_rightdouble.gif -------------------------------------------------------------------------------- /doc/html/images/a_rightdouble_na.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/a_rightdouble_na.gif -------------------------------------------------------------------------------- /doc/html/images/a_tableofcon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/a_tableofcon.gif -------------------------------------------------------------------------------- /doc/html/images/a_tableofcon_na.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/a_tableofcon_na.gif -------------------------------------------------------------------------------- /doc/html/images/a_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/a_top.gif -------------------------------------------------------------------------------- /doc/html/images/a_top_na.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/a_top_na.gif -------------------------------------------------------------------------------- /doc/html/images/a_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/a_up.gif -------------------------------------------------------------------------------- /doc/html/images/a_up_na.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/a_up_na.gif -------------------------------------------------------------------------------- /doc/html/images/skull_down.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/skull_down.jpeg -------------------------------------------------------------------------------- /doc/html/images/skull_up.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/skull_up.jpeg -------------------------------------------------------------------------------- /doc/html/images/star-bullet-s1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/star-bullet-s1.png -------------------------------------------------------------------------------- /doc/html/images/triangle2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/triangle2.jpg -------------------------------------------------------------------------------- /doc/html/images/triangle2inv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/triangle2inv.jpg -------------------------------------------------------------------------------- /doc/html/images/triangle3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/images/triangle3.jpg -------------------------------------------------------------------------------- /doc/html/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/keywords.txt -------------------------------------------------------------------------------- /doc/html/make-doc.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/make-doc.i -------------------------------------------------------------------------------- /doc/html/packinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/packinfo.txt -------------------------------------------------------------------------------- /doc/html/skull.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/skull.css -------------------------------------------------------------------------------- /doc/html/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/style.css -------------------------------------------------------------------------------- /doc/html/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/template.html -------------------------------------------------------------------------------- /doc/html/texi2html.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/html/texi2html.tpl -------------------------------------------------------------------------------- /doc/maked.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/maked.i -------------------------------------------------------------------------------- /doc/refs-html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/index.html -------------------------------------------------------------------------------- /doc/refs-html/qrfunc00.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrfunc00.html -------------------------------------------------------------------------------- /doc/refs-html/qrfunc01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrfunc01.html -------------------------------------------------------------------------------- /doc/refs-html/qrfunc02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrfunc02.html -------------------------------------------------------------------------------- /doc/refs-html/qrfunc03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrfunc03.html -------------------------------------------------------------------------------- /doc/refs-html/qrfunc04.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrfunc04.html -------------------------------------------------------------------------------- /doc/refs-html/qrfunc05.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrfunc05.html -------------------------------------------------------------------------------- /doc/refs-html/qrfunc06.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrfunc06.html -------------------------------------------------------------------------------- /doc/refs-html/qrfunc07.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrfunc07.html -------------------------------------------------------------------------------- /doc/refs-html/qrfunc08.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrfunc08.html -------------------------------------------------------------------------------- /doc/refs-html/qrfunc09.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrfunc09.html -------------------------------------------------------------------------------- /doc/refs-html/qrfunc10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrfunc10.html -------------------------------------------------------------------------------- /doc/refs-html/qrfunc11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrfunc11.html -------------------------------------------------------------------------------- /doc/refs-html/qrfunc12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrfunc12.html -------------------------------------------------------------------------------- /doc/refs-html/qrfunc13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrfunc13.html -------------------------------------------------------------------------------- /doc/refs-html/qrfunc14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrfunc14.html -------------------------------------------------------------------------------- /doc/refs-html/qrfunc15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrfunc15.html -------------------------------------------------------------------------------- /doc/refs-html/qrfunc16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrfunc16.html -------------------------------------------------------------------------------- /doc/refs-html/qrio00.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrio00.html -------------------------------------------------------------------------------- /doc/refs-html/qrio01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrio01.html -------------------------------------------------------------------------------- /doc/refs-html/qrio02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrio02.html -------------------------------------------------------------------------------- /doc/refs-html/qrio03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrio03.html -------------------------------------------------------------------------------- /doc/refs-html/qrio04.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrio04.html -------------------------------------------------------------------------------- /doc/refs-html/qrio05.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrio05.html -------------------------------------------------------------------------------- /doc/refs-html/qrio06.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrio06.html -------------------------------------------------------------------------------- /doc/refs-html/qrio07.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrio07.html -------------------------------------------------------------------------------- /doc/refs-html/qrio08.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrio08.html -------------------------------------------------------------------------------- /doc/refs-html/qrio09.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrio09.html -------------------------------------------------------------------------------- /doc/refs-html/qrio10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrio10.html -------------------------------------------------------------------------------- /doc/refs-html/qrio11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrio11.html -------------------------------------------------------------------------------- /doc/refs-html/qrio12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrio12.html -------------------------------------------------------------------------------- /doc/refs-html/qrio13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrio13.html -------------------------------------------------------------------------------- /doc/refs-html/qrlang00.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrlang00.html -------------------------------------------------------------------------------- /doc/refs-html/qrlang01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrlang01.html -------------------------------------------------------------------------------- /doc/refs-html/qrlang02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrlang02.html -------------------------------------------------------------------------------- /doc/refs-html/qrlang03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrlang03.html -------------------------------------------------------------------------------- /doc/refs-html/qrlang04.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrlang04.html -------------------------------------------------------------------------------- /doc/refs-html/qrlang05.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrlang05.html -------------------------------------------------------------------------------- /doc/refs-html/qrlang06.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrlang06.html -------------------------------------------------------------------------------- /doc/refs-html/qrlang07.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrlang07.html -------------------------------------------------------------------------------- /doc/refs-html/qrlang08.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrlang08.html -------------------------------------------------------------------------------- /doc/refs-html/qrlang09.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrlang09.html -------------------------------------------------------------------------------- /doc/refs-html/qrlang10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrlang10.html -------------------------------------------------------------------------------- /doc/refs-html/qrlang11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrlang11.html -------------------------------------------------------------------------------- /doc/refs-html/qrlang12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrlang12.html -------------------------------------------------------------------------------- /doc/refs-html/qrlang13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrlang13.html -------------------------------------------------------------------------------- /doc/refs-html/qrlang14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrlang14.html -------------------------------------------------------------------------------- /doc/refs-html/qrlang15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrlang15.html -------------------------------------------------------------------------------- /doc/refs-html/qrlang16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrlang16.html -------------------------------------------------------------------------------- /doc/refs-html/qrlang17.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs-html/qrlang17.html -------------------------------------------------------------------------------- /doc/refs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs.pdf -------------------------------------------------------------------------------- /doc/refs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/refs.tex -------------------------------------------------------------------------------- /doc/yorick.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/yorick.1 -------------------------------------------------------------------------------- /doc/yorick.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/yorick.pdf -------------------------------------------------------------------------------- /doc/yorick.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/doc/yorick.tex -------------------------------------------------------------------------------- /drat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/drat/Makefile -------------------------------------------------------------------------------- /drat/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/drat/README -------------------------------------------------------------------------------- /drat/bound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/drat/bound.c -------------------------------------------------------------------------------- /drat/bound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/drat/bound.h -------------------------------------------------------------------------------- /drat/drat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/drat/drat.c -------------------------------------------------------------------------------- /drat/drat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/drat/drat.h -------------------------------------------------------------------------------- /drat/drat.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/drat/drat.i -------------------------------------------------------------------------------- /drat/dratt.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/drat/dratt.i -------------------------------------------------------------------------------- /drat/track.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/drat/track.c -------------------------------------------------------------------------------- /drat/track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/drat/track.h -------------------------------------------------------------------------------- /drat/trans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/drat/trans.c -------------------------------------------------------------------------------- /drat/trans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/drat/trans.h -------------------------------------------------------------------------------- /drat/ydrat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/drat/ydrat.c -------------------------------------------------------------------------------- /emacs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/emacs/README -------------------------------------------------------------------------------- /emacs/yorick-auto.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/emacs/yorick-auto.el -------------------------------------------------------------------------------- /emacs/yorick.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/emacs/yorick.el -------------------------------------------------------------------------------- /extend/cerfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/extend/cerfc.c -------------------------------------------------------------------------------- /extend/cerfc.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/extend/cerfc.i -------------------------------------------------------------------------------- /extendf/ferfc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/extendf/ferfc.f -------------------------------------------------------------------------------- /extendf/ferfc.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/extendf/ferfc.i -------------------------------------------------------------------------------- /fft/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/fft/Makefile -------------------------------------------------------------------------------- /fft/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/fft/README -------------------------------------------------------------------------------- /fft/cfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/fft/cfft.h -------------------------------------------------------------------------------- /fft/cfft2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/fft/cfft2.c -------------------------------------------------------------------------------- /fft/cfftb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/fft/cfftb.c -------------------------------------------------------------------------------- /fft/cfftf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/fft/cfftf.c -------------------------------------------------------------------------------- /fft/cffti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/fft/cffti.c -------------------------------------------------------------------------------- /fft/roll2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/fft/roll2.c -------------------------------------------------------------------------------- /g/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/g/README -------------------------------------------------------------------------------- /g/axes.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/g/axes.gs -------------------------------------------------------------------------------- /g/boxed.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/g/boxed.gs -------------------------------------------------------------------------------- /g/boxed2.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/g/boxed2.gs -------------------------------------------------------------------------------- /g/coolwarm.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/g/coolwarm.gp -------------------------------------------------------------------------------- /g/earth.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/g/earth.gp -------------------------------------------------------------------------------- /g/gray.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/g/gray.gp -------------------------------------------------------------------------------- /g/heat.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/g/heat.gp -------------------------------------------------------------------------------- /g/inferno.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/g/inferno.gp -------------------------------------------------------------------------------- /g/l_nobox.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/g/l_nobox.gs -------------------------------------------------------------------------------- /g/magma.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/g/magma.gp -------------------------------------------------------------------------------- /g/ncar.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/g/ncar.gp -------------------------------------------------------------------------------- /g/nobox.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/g/nobox.gs -------------------------------------------------------------------------------- /g/plasma.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/g/plasma.gp -------------------------------------------------------------------------------- /g/ps.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/g/ps.ps -------------------------------------------------------------------------------- /g/pscom.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/g/pscom.ps -------------------------------------------------------------------------------- /g/rainbow.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/g/rainbow.gp -------------------------------------------------------------------------------- /g/stern.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/g/stern.gp -------------------------------------------------------------------------------- /g/vg.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/g/vg.gs -------------------------------------------------------------------------------- /g/vgbox.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/g/vgbox.gs -------------------------------------------------------------------------------- /g/viridis.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/g/viridis.gp -------------------------------------------------------------------------------- /g/work.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/g/work.gs -------------------------------------------------------------------------------- /g/work2.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/g/work2.gs -------------------------------------------------------------------------------- /g/yarg.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/g/yarg.gp -------------------------------------------------------------------------------- /gist/.gitignore: -------------------------------------------------------------------------------- 1 | main.c 2 | gist 3 | -------------------------------------------------------------------------------- /gist/EXTERNS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/EXTERNS -------------------------------------------------------------------------------- /gist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/Makefile -------------------------------------------------------------------------------- /gist/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/README -------------------------------------------------------------------------------- /gist/README.B: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/README.B -------------------------------------------------------------------------------- /gist/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/bench.c -------------------------------------------------------------------------------- /gist/browser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/browser.c -------------------------------------------------------------------------------- /gist/cgm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/cgm.c -------------------------------------------------------------------------------- /gist/cgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/cgm.h -------------------------------------------------------------------------------- /gist/cgmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/cgmin.c -------------------------------------------------------------------------------- /gist/cgmin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/cgmin.h -------------------------------------------------------------------------------- /gist/clip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/clip.c -------------------------------------------------------------------------------- /gist/clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/clip.h -------------------------------------------------------------------------------- /gist/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/draw.c -------------------------------------------------------------------------------- /gist/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/draw.h -------------------------------------------------------------------------------- /gist/draw0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/draw0.c -------------------------------------------------------------------------------- /gist/engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/engine.c -------------------------------------------------------------------------------- /gist/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/engine.h -------------------------------------------------------------------------------- /gist/eps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/eps.c -------------------------------------------------------------------------------- /gist/eps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/eps.h -------------------------------------------------------------------------------- /gist/gcntr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/gcntr.c -------------------------------------------------------------------------------- /gist/gist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/gist.c -------------------------------------------------------------------------------- /gist/gist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/gist.h -------------------------------------------------------------------------------- /gist/gread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/gread.c -------------------------------------------------------------------------------- /gist/gtext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/gtext.c -------------------------------------------------------------------------------- /gist/gtext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/gtext.h -------------------------------------------------------------------------------- /gist/hlevel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/hlevel.c -------------------------------------------------------------------------------- /gist/hlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/hlevel.h -------------------------------------------------------------------------------- /gist/ps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/ps.c -------------------------------------------------------------------------------- /gist/ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/ps.h -------------------------------------------------------------------------------- /gist/tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/tick.c -------------------------------------------------------------------------------- /gist/tick60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/tick60.c -------------------------------------------------------------------------------- /gist/xbasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/xbasic.c -------------------------------------------------------------------------------- /gist/xbasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/xbasic.h -------------------------------------------------------------------------------- /gist/xfancy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/xfancy.c -------------------------------------------------------------------------------- /gist/xfancy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/gist/xfancy.h -------------------------------------------------------------------------------- /hex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/hex/Makefile -------------------------------------------------------------------------------- /hex/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/hex/NOTES -------------------------------------------------------------------------------- /hex/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/hex/README -------------------------------------------------------------------------------- /hex/hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/hex/hex.c -------------------------------------------------------------------------------- /hex/hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/hex/hex.h -------------------------------------------------------------------------------- /hex/hex.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/hex/hex.i -------------------------------------------------------------------------------- /hex/hex24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/hex/hex24.c -------------------------------------------------------------------------------- /hex/hex5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/hex/hex5.c -------------------------------------------------------------------------------- /hex/hydram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/hex/hydram.c -------------------------------------------------------------------------------- /hex/hydram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/hex/hydram.h -------------------------------------------------------------------------------- /hex/regul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/hex/regul.c -------------------------------------------------------------------------------- /hex/regul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/hex/regul.h -------------------------------------------------------------------------------- /hex/store.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/hex/store.c -------------------------------------------------------------------------------- /hex/test.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/hex/test.i -------------------------------------------------------------------------------- /hex/tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/hex/tools.c -------------------------------------------------------------------------------- /hex/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/hex/tools.h -------------------------------------------------------------------------------- /hex/yhex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/hex/yhex.c -------------------------------------------------------------------------------- /hex/ylmdec.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/hex/ylmdec.i -------------------------------------------------------------------------------- /i-start/50i.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i-start/50i.i -------------------------------------------------------------------------------- /i-start/70drat.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i-start/70drat.i -------------------------------------------------------------------------------- /i-start/70hex.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i-start/70hex.i -------------------------------------------------------------------------------- /i-start/90pkg_mngr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i-start/90pkg_mngr.i -------------------------------------------------------------------------------- /i-start/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i-start/README -------------------------------------------------------------------------------- /i/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/README -------------------------------------------------------------------------------- /i/basfix.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/basfix.i -------------------------------------------------------------------------------- /i/bessel.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/bessel.i -------------------------------------------------------------------------------- /i/bezier.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/bezier.i -------------------------------------------------------------------------------- /i/bowtie.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/bowtie.i -------------------------------------------------------------------------------- /i/button.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/button.i -------------------------------------------------------------------------------- /i/calendar.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/calendar.i -------------------------------------------------------------------------------- /i/cheby.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/cheby.i -------------------------------------------------------------------------------- /i/cie.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/cie.i -------------------------------------------------------------------------------- /i/cmap.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/cmap.i -------------------------------------------------------------------------------- /i/collec.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/collec.i -------------------------------------------------------------------------------- /i/color.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/color.i -------------------------------------------------------------------------------- /i/convol.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/convol.i -------------------------------------------------------------------------------- /i/copyb.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/copyb.i -------------------------------------------------------------------------------- /i/custom.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/custom.i -------------------------------------------------------------------------------- /i/dawson.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/dawson.i -------------------------------------------------------------------------------- /i/demo1.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/demo1.i -------------------------------------------------------------------------------- /i/demo2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/demo2.i -------------------------------------------------------------------------------- /i/demo3.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/demo3.i -------------------------------------------------------------------------------- /i/demo4.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/demo4.i -------------------------------------------------------------------------------- /i/demo5.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/demo5.i -------------------------------------------------------------------------------- /i/dichromat.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/dichromat.i -------------------------------------------------------------------------------- /i/digit2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/digit2.i -------------------------------------------------------------------------------- /i/ellipse.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/ellipse.i -------------------------------------------------------------------------------- /i/elliptic.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/elliptic.i -------------------------------------------------------------------------------- /i/fermi.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/fermi.i -------------------------------------------------------------------------------- /i/fermii.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/fermii.i -------------------------------------------------------------------------------- /i/filter.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/filter.i -------------------------------------------------------------------------------- /i/fitlsq.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/fitlsq.i -------------------------------------------------------------------------------- /i/fitrat.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/fitrat.i -------------------------------------------------------------------------------- /i/fits.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/fits.i -------------------------------------------------------------------------------- /i/gamma.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/gamma.i -------------------------------------------------------------------------------- /i/gammp.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/gammp.i -------------------------------------------------------------------------------- /i/gcd.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/gcd.i -------------------------------------------------------------------------------- /i/hsv2rgb.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/hsv2rgb.i -------------------------------------------------------------------------------- /i/hydra.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/hydra.i -------------------------------------------------------------------------------- /i/idlsave.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/idlsave.i -------------------------------------------------------------------------------- /i/ieee.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/ieee.i -------------------------------------------------------------------------------- /i/kepler.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/kepler.i -------------------------------------------------------------------------------- /i/lab2rgb.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/lab2rgb.i -------------------------------------------------------------------------------- /i/legndr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/legndr.i -------------------------------------------------------------------------------- /i/levmar.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/levmar.i -------------------------------------------------------------------------------- /i/make.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/make.i -------------------------------------------------------------------------------- /i/md5.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/md5.i -------------------------------------------------------------------------------- /i/mkdoc.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/mkdoc.i -------------------------------------------------------------------------------- /i/movie.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/movie.i -------------------------------------------------------------------------------- /i/msort.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/msort.i -------------------------------------------------------------------------------- /i/multi.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/multi.i -------------------------------------------------------------------------------- /i/netcdf.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/netcdf.i -------------------------------------------------------------------------------- /i/pathfun.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/pathfun.i -------------------------------------------------------------------------------- /i/pixels.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/pixels.i -------------------------------------------------------------------------------- /i/pkg_mngr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/pkg_mngr.i -------------------------------------------------------------------------------- /i/pl3d.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/pl3d.i -------------------------------------------------------------------------------- /i/plato.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/plato.i -------------------------------------------------------------------------------- /i/plclab.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/plclab.i -------------------------------------------------------------------------------- /i/plwf.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/plwf.i -------------------------------------------------------------------------------- /i/pnm.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/pnm.i -------------------------------------------------------------------------------- /i/prefix.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/prefix.i -------------------------------------------------------------------------------- /i/random.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/random.i -------------------------------------------------------------------------------- /i/rays.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/rays.i -------------------------------------------------------------------------------- /i/rcheby.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/rcheby.i -------------------------------------------------------------------------------- /i/readn.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/readn.i -------------------------------------------------------------------------------- /i/regress.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/regress.i -------------------------------------------------------------------------------- /i/rezone.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/rezone.i -------------------------------------------------------------------------------- /i/rkutta.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/rkutta.i -------------------------------------------------------------------------------- /i/romberg.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/romberg.i -------------------------------------------------------------------------------- /i/roots.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/roots.i -------------------------------------------------------------------------------- /i/series.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/series.i -------------------------------------------------------------------------------- /i/show.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/show.i -------------------------------------------------------------------------------- /i/silo.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/silo.i -------------------------------------------------------------------------------- /i/slice3.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/slice3.i -------------------------------------------------------------------------------- /i/spanarc.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/spanarc.i -------------------------------------------------------------------------------- /i/spline.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/spline.i -------------------------------------------------------------------------------- /i/splinef.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/splinef.i -------------------------------------------------------------------------------- /i/string.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/string.i -------------------------------------------------------------------------------- /i/style.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/style.i -------------------------------------------------------------------------------- /i/sysafe.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/sysafe.i -------------------------------------------------------------------------------- /i/test1.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/test1.i -------------------------------------------------------------------------------- /i/test2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/test2.i -------------------------------------------------------------------------------- /i/test3.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/test3.i -------------------------------------------------------------------------------- /i/testb.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/testb.i -------------------------------------------------------------------------------- /i/testfull.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/testfull.i -------------------------------------------------------------------------------- /i/testg.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/testg.i -------------------------------------------------------------------------------- /i/testlp.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/testlp.i -------------------------------------------------------------------------------- /i/testm.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/testm.i -------------------------------------------------------------------------------- /i/testoxy.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/testoxy.i -------------------------------------------------------------------------------- /i/testp.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/testp.i -------------------------------------------------------------------------------- /i/testsock.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/testsock.i -------------------------------------------------------------------------------- /i/teststr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/teststr.i -------------------------------------------------------------------------------- /i/textload.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/textload.i -------------------------------------------------------------------------------- /i/torgb.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/torgb.i -------------------------------------------------------------------------------- /i/txpath.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/txpath.i -------------------------------------------------------------------------------- /i/unsigned.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/unsigned.i -------------------------------------------------------------------------------- /i/ylm.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/ylm.i -------------------------------------------------------------------------------- /i/zroots.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i/zroots.i -------------------------------------------------------------------------------- /i0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i0/README -------------------------------------------------------------------------------- /i0/fft.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i0/fft.i -------------------------------------------------------------------------------- /i0/graph.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i0/graph.i -------------------------------------------------------------------------------- /i0/matrix.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i0/matrix.i -------------------------------------------------------------------------------- /i0/paths.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i0/paths.i -------------------------------------------------------------------------------- /i0/std.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i0/std.i -------------------------------------------------------------------------------- /i0/stdx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/i0/stdx.i -------------------------------------------------------------------------------- /icons/yicon16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/icons/yicon16.bmp -------------------------------------------------------------------------------- /icons/yicon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/icons/yicon16.png -------------------------------------------------------------------------------- /icons/yicon32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/icons/yicon32.bmp -------------------------------------------------------------------------------- /icons/yicon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/icons/yicon32.png -------------------------------------------------------------------------------- /icons/yicon48.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/icons/yicon48.bmp -------------------------------------------------------------------------------- /icons/yicon48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/icons/yicon48.gif -------------------------------------------------------------------------------- /icons/yicon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/icons/yicon48.png -------------------------------------------------------------------------------- /icons/yicon48.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/icons/yicon48.xpm -------------------------------------------------------------------------------- /icons/yorick.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/icons/yorick.ico -------------------------------------------------------------------------------- /install.rel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/install.rel -------------------------------------------------------------------------------- /instally.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/instally.sh -------------------------------------------------------------------------------- /math/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/math/README -------------------------------------------------------------------------------- /math/heapsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/math/heapsort.c -------------------------------------------------------------------------------- /math/heapsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/math/heapsort.h -------------------------------------------------------------------------------- /math/lecuyer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/math/lecuyer.c -------------------------------------------------------------------------------- /math/lecuyer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/math/lecuyer.h -------------------------------------------------------------------------------- /matrix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/matrix/Makefile -------------------------------------------------------------------------------- /matrix/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/matrix/README -------------------------------------------------------------------------------- /matrix/cblasy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/matrix/cblasy.c -------------------------------------------------------------------------------- /matrix/cblasy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/matrix/cblasy.h -------------------------------------------------------------------------------- /matrix/cxerbla.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/matrix/cxerbla.c -------------------------------------------------------------------------------- /matrix/dbdsqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/matrix/dbdsqr.c -------------------------------------------------------------------------------- /matrix/dg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/matrix/dg.h -------------------------------------------------------------------------------- /matrix/dgecon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/matrix/dgecon.c -------------------------------------------------------------------------------- /matrix/dgels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/matrix/dgels.c -------------------------------------------------------------------------------- /matrix/dgelss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/matrix/dgelss.c -------------------------------------------------------------------------------- /matrix/dgesv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/matrix/dgesv.c -------------------------------------------------------------------------------- /matrix/dgesv2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/matrix/dgesv2.c -------------------------------------------------------------------------------- /matrix/dgesvd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/matrix/dgesvd.c -------------------------------------------------------------------------------- /matrix/dgtsv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/matrix/dgtsv.c -------------------------------------------------------------------------------- /matrix/dgyor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/matrix/dgyor.c -------------------------------------------------------------------------------- /matrix/dlamc3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/matrix/dlamc3.c -------------------------------------------------------------------------------- /matrix/dlasr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/matrix/dlasr.c -------------------------------------------------------------------------------- /mpy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/mpy/.gitignore -------------------------------------------------------------------------------- /mpy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/mpy/Makefile -------------------------------------------------------------------------------- /mpy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/mpy/README -------------------------------------------------------------------------------- /mpy/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/mpy/configure -------------------------------------------------------------------------------- /mpy/custommp.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/mpy/custommp.i -------------------------------------------------------------------------------- /mpy/mpicc-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/mpy/mpicc-sh -------------------------------------------------------------------------------- /mpy/mpool.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/mpy/mpool.i -------------------------------------------------------------------------------- /mpy/mpy-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/mpy/mpy-sh -------------------------------------------------------------------------------- /mpy/mpy.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/mpy/mpy.1 -------------------------------------------------------------------------------- /mpy/mpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/mpy/mpy.c -------------------------------------------------------------------------------- /mpy/mpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/mpy/mpy.h -------------------------------------------------------------------------------- /mpy/mpy.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/mpy/mpy.i -------------------------------------------------------------------------------- /mpy/mpy1.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/mpy/mpy1.i -------------------------------------------------------------------------------- /mpy/mpyfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/mpy/mpyfile.c -------------------------------------------------------------------------------- /mpy/testmp.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/mpy/testmp.i -------------------------------------------------------------------------------- /opengl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/opengl/README -------------------------------------------------------------------------------- /opengl/README.gl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/opengl/README.gl -------------------------------------------------------------------------------- /opengl/README.glx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/opengl/README.glx -------------------------------------------------------------------------------- /opengl/README.t3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/opengl/README.t3d -------------------------------------------------------------------------------- /opengl/configgl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/opengl/configgl.sh -------------------------------------------------------------------------------- /opengl/oglw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/opengl/oglw.c -------------------------------------------------------------------------------- /opengl/oglx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/opengl/oglx.c -------------------------------------------------------------------------------- /opengl/playgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/opengl/playgl.h -------------------------------------------------------------------------------- /opengl/test3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/opengl/test3d.c -------------------------------------------------------------------------------- /play/.gitignore: -------------------------------------------------------------------------------- 1 | playwin.h 2 | -------------------------------------------------------------------------------- /play/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/Makefile -------------------------------------------------------------------------------- /play/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/README -------------------------------------------------------------------------------- /play/any/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/any/Makefile -------------------------------------------------------------------------------- /play/any/README.t2d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/any/README.t2d -------------------------------------------------------------------------------- /play/any/alarms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/any/alarms.c -------------------------------------------------------------------------------- /play/any/bitlrot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/any/bitlrot.c -------------------------------------------------------------------------------- /play/any/bitmrot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/any/bitmrot.c -------------------------------------------------------------------------------- /play/any/bitrev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/any/bitrev.c -------------------------------------------------------------------------------- /play/any/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/any/hash.c -------------------------------------------------------------------------------- /play/any/hash0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/any/hash0.c -------------------------------------------------------------------------------- /play/any/hashctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/any/hashctx.c -------------------------------------------------------------------------------- /play/any/hashid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/any/hashid.c -------------------------------------------------------------------------------- /play/any/hashtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/any/hashtest.c -------------------------------------------------------------------------------- /play/any/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/any/mm.c -------------------------------------------------------------------------------- /play/any/mminit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/any/mminit.c -------------------------------------------------------------------------------- /play/any/mmtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/any/mmtest.c -------------------------------------------------------------------------------- /play/any/numfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/any/numfmt.c -------------------------------------------------------------------------------- /play/any/p595.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/any/p595.c -------------------------------------------------------------------------------- /play/any/pmemcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/any/pmemcpy.c -------------------------------------------------------------------------------- /play/any/psoftfpe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/any/psoftfpe.c -------------------------------------------------------------------------------- /play/any/pstdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/any/pstdio.c -------------------------------------------------------------------------------- /play/any/pstrcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/any/pstrcpy.c -------------------------------------------------------------------------------- /play/any/pstrncat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/any/pstrncat.c -------------------------------------------------------------------------------- /play/any/test2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/any/test2d.c -------------------------------------------------------------------------------- /play/hacks/MacOS103.bug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/hacks/MacOS103.bug -------------------------------------------------------------------------------- /play/hacks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/hacks/Makefile -------------------------------------------------------------------------------- /play/hacks/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/hacks/README -------------------------------------------------------------------------------- /play/hacks/hack103.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/hacks/hack103.c -------------------------------------------------------------------------------- /play/hacks/hack103.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/hacks/hack103.h -------------------------------------------------------------------------------- /play/phash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/phash.h -------------------------------------------------------------------------------- /play/play.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/play.h -------------------------------------------------------------------------------- /play/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/plugin.h -------------------------------------------------------------------------------- /play/pmin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/pmin.h -------------------------------------------------------------------------------- /play/pstdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/pstdio.h -------------------------------------------------------------------------------- /play/pstdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/pstdlib.h -------------------------------------------------------------------------------- /play/unix/.gitignore: -------------------------------------------------------------------------------- 1 | config.h 2 | -------------------------------------------------------------------------------- /play/unix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/Makefile -------------------------------------------------------------------------------- /play/unix/PLUGIN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/PLUGIN.txt -------------------------------------------------------------------------------- /play/unix/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/README -------------------------------------------------------------------------------- /play/unix/README.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/README.cfg -------------------------------------------------------------------------------- /play/unix/README.fpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/README.fpu -------------------------------------------------------------------------------- /play/unix/README.gtk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/README.gtk -------------------------------------------------------------------------------- /play/unix/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/config.c -------------------------------------------------------------------------------- /play/unix/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/config.sh -------------------------------------------------------------------------------- /play/unix/cygyor.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/cygyor.def -------------------------------------------------------------------------------- /play/unix/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/dir.c -------------------------------------------------------------------------------- /play/unix/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/files.c -------------------------------------------------------------------------------- /play/unix/fpuset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/fpuset.c -------------------------------------------------------------------------------- /play/unix/fputest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/fputest.c -------------------------------------------------------------------------------- /play/unix/handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/handler.c -------------------------------------------------------------------------------- /play/unix/pathnm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/pathnm.c -------------------------------------------------------------------------------- /play/unix/playu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/playu.h -------------------------------------------------------------------------------- /play/unix/pmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/pmain.c -------------------------------------------------------------------------------- /play/unix/slinks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/slinks.c -------------------------------------------------------------------------------- /play/unix/stdinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/stdinit.c -------------------------------------------------------------------------------- /play/unix/timeu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/timeu.c -------------------------------------------------------------------------------- /play/unix/timew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/timew.c -------------------------------------------------------------------------------- /play/unix/udl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/udl.c -------------------------------------------------------------------------------- /play/unix/udltest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/udltest.c -------------------------------------------------------------------------------- /play/unix/uevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/uevent.c -------------------------------------------------------------------------------- /play/unix/ugetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/ugetc.c -------------------------------------------------------------------------------- /play/unix/ugetc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/ugetc.h -------------------------------------------------------------------------------- /play/unix/uinbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/uinbg.c -------------------------------------------------------------------------------- /play/unix/umain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/umain.c -------------------------------------------------------------------------------- /play/unix/upoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/upoll.c -------------------------------------------------------------------------------- /play/unix/upoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/upoll.h -------------------------------------------------------------------------------- /play/unix/usernm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/usernm.c -------------------------------------------------------------------------------- /play/unix/usock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/usock.c -------------------------------------------------------------------------------- /play/unix/uspawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/unix/uspawn.c -------------------------------------------------------------------------------- /play/win/DLLHOWTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/DLLHOWTO -------------------------------------------------------------------------------- /play/win/Make.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/Make.win -------------------------------------------------------------------------------- /play/win/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/Makefile -------------------------------------------------------------------------------- /play/win/clips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/clips.c -------------------------------------------------------------------------------- /play/win/config.h: -------------------------------------------------------------------------------- 1 | /*windows archivers may delete empty files*/ 2 | -------------------------------------------------------------------------------- /play/win/conterm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/conterm.c -------------------------------------------------------------------------------- /play/win/cursors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/cursors.c -------------------------------------------------------------------------------- /play/win/cygapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/cygapp.c -------------------------------------------------------------------------------- /play/win/cygmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/cygmain.c -------------------------------------------------------------------------------- /play/win/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/dir.c -------------------------------------------------------------------------------- /play/win/ellipse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/ellipse.c -------------------------------------------------------------------------------- /play/win/feep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/feep.c -------------------------------------------------------------------------------- /play/win/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/files.c -------------------------------------------------------------------------------- /play/win/getdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/getdc.c -------------------------------------------------------------------------------- /play/win/handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/handler.c -------------------------------------------------------------------------------- /play/win/mfcapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/mfcapp.cpp -------------------------------------------------------------------------------- /play/win/mfcapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/mfcapp.h -------------------------------------------------------------------------------- /play/win/mfcmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/mfcmain.cpp -------------------------------------------------------------------------------- /play/win/mfcres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/mfcres.h -------------------------------------------------------------------------------- /play/win/mfcterm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/mfcterm.cpp -------------------------------------------------------------------------------- /play/win/mfcterm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/mfcterm.h -------------------------------------------------------------------------------- /play/win/pals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/pals.c -------------------------------------------------------------------------------- /play/win/pathnm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/pathnm.c -------------------------------------------------------------------------------- /play/win/pcell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/pcell.c -------------------------------------------------------------------------------- /play/win/pfill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/pfill.c -------------------------------------------------------------------------------- /play/win/playw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/playw.h -------------------------------------------------------------------------------- /play/win/playwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/playwin.h -------------------------------------------------------------------------------- /play/win/plines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/plines.c -------------------------------------------------------------------------------- /play/win/pmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/pmin.c -------------------------------------------------------------------------------- /play/win/points.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/points.c -------------------------------------------------------------------------------- /play/win/prect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/prect.c -------------------------------------------------------------------------------- /play/win/pscr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/pscr.c -------------------------------------------------------------------------------- /play/win/ptext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/ptext.c -------------------------------------------------------------------------------- /play/win/pwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/pwin.c -------------------------------------------------------------------------------- /play/win/sigansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/sigansi.c -------------------------------------------------------------------------------- /play/win/sigseh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/sigseh.c -------------------------------------------------------------------------------- /play/win/timeu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/timeu.c -------------------------------------------------------------------------------- /play/win/timew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/timew.c -------------------------------------------------------------------------------- /play/win/usernm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/usernm.c -------------------------------------------------------------------------------- /play/win/wdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/wdl.c -------------------------------------------------------------------------------- /play/win/wpoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/wpoll.c -------------------------------------------------------------------------------- /play/win/wpopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/wpopen.c -------------------------------------------------------------------------------- /play/win/wsock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/wsock.c -------------------------------------------------------------------------------- /play/win/wspawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/wspawn.c -------------------------------------------------------------------------------- /play/win/wstdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/win/wstdio.c -------------------------------------------------------------------------------- /play/x11/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/x11/Makefile -------------------------------------------------------------------------------- /play/x11/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/x11/README -------------------------------------------------------------------------------- /play/x11/README.x11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/x11/README.x11 -------------------------------------------------------------------------------- /play/x11/clips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/x11/clips.c -------------------------------------------------------------------------------- /play/x11/colors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/x11/colors.c -------------------------------------------------------------------------------- /play/x11/connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/x11/connect.c -------------------------------------------------------------------------------- /play/x11/cursors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/x11/cursors.c -------------------------------------------------------------------------------- /play/x11/ellipse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/x11/ellipse.c -------------------------------------------------------------------------------- /play/x11/errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/x11/errors.c -------------------------------------------------------------------------------- /play/x11/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/x11/events.c -------------------------------------------------------------------------------- /play/x11/feep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/x11/feep.c -------------------------------------------------------------------------------- /play/x11/fills.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/x11/fills.c -------------------------------------------------------------------------------- /play/x11/fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/x11/fonts.c -------------------------------------------------------------------------------- /play/x11/images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/x11/images.c -------------------------------------------------------------------------------- /play/x11/lines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/x11/lines.c -------------------------------------------------------------------------------- /play/x11/pals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/x11/pals.c -------------------------------------------------------------------------------- /play/x11/playwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/x11/playwin.h -------------------------------------------------------------------------------- /play/x11/playx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/x11/playx.h -------------------------------------------------------------------------------- /play/x11/points.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/x11/points.c -------------------------------------------------------------------------------- /play/x11/pwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/x11/pwin.c -------------------------------------------------------------------------------- /play/x11/rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/x11/rect.c -------------------------------------------------------------------------------- /play/x11/resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/x11/resource.c -------------------------------------------------------------------------------- /play/x11/rgbread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/x11/rgbread.c -------------------------------------------------------------------------------- /play/x11/textout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/x11/textout.c -------------------------------------------------------------------------------- /play/x11/xconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/play/x11/xconfig.sh -------------------------------------------------------------------------------- /play/yversion.h: -------------------------------------------------------------------------------- 1 | #define Y_VERSION "2.2.04x" 2 | -------------------------------------------------------------------------------- /regexp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/regexp/Makefile -------------------------------------------------------------------------------- /regexp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/regexp/README -------------------------------------------------------------------------------- /regexp/yfnmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/regexp/yfnmatch.c -------------------------------------------------------------------------------- /regexp/yfnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/regexp/yfnmatch.h -------------------------------------------------------------------------------- /regexp/yregexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/regexp/yregexp.c -------------------------------------------------------------------------------- /regexp/yregexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/regexp/yregexp.h -------------------------------------------------------------------------------- /win/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/win/.gitignore -------------------------------------------------------------------------------- /win/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/win/README -------------------------------------------------------------------------------- /win/bench.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/win/bench.vcxproj -------------------------------------------------------------------------------- /win/browser.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/win/browser.rc -------------------------------------------------------------------------------- /win/browser.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/win/browser.vcxproj -------------------------------------------------------------------------------- /win/codger.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/win/codger.vcxproj -------------------------------------------------------------------------------- /win/drat.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/win/drat.vcxproj -------------------------------------------------------------------------------- /win/gist.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/win/gist.vcxproj -------------------------------------------------------------------------------- /win/hex.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/win/hex.vcxproj -------------------------------------------------------------------------------- /win/makeidef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/win/makeidef.c -------------------------------------------------------------------------------- /win/makeinit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/win/makeinit.bat -------------------------------------------------------------------------------- /win/makewdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/win/makewdef.c -------------------------------------------------------------------------------- /win/numfmt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/win/numfmt.vcxproj -------------------------------------------------------------------------------- /win/play.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/win/play.vcxproj -------------------------------------------------------------------------------- /win/setup.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/win/setup.vcxproj -------------------------------------------------------------------------------- /win/test2d.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/win/test2d.vcxproj -------------------------------------------------------------------------------- /win/test3d.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/win/test3d.vcxproj -------------------------------------------------------------------------------- /win/yflat.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/win/yflat.vcxproj -------------------------------------------------------------------------------- /win/ylogo16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/win/ylogo16.bmp -------------------------------------------------------------------------------- /win/ylogo32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/win/ylogo32.bmp -------------------------------------------------------------------------------- /win/ylogo48.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/win/ylogo48.bmp -------------------------------------------------------------------------------- /win/yorick.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/win/yorick.ico -------------------------------------------------------------------------------- /win/yorick.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/win/yorick.rc -------------------------------------------------------------------------------- /win/yorick.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/win/yorick.sln -------------------------------------------------------------------------------- /win/yorick.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/win/yorick.vcxproj -------------------------------------------------------------------------------- /win/yorlib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/win/yorlib.vcxproj -------------------------------------------------------------------------------- /yorapi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorapi.sh -------------------------------------------------------------------------------- /yorick/.gitignore: -------------------------------------------------------------------------------- 1 | yorick 2 | main.c 3 | prmtyp.h 4 | -------------------------------------------------------------------------------- /yorick/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/Makefile -------------------------------------------------------------------------------- /yorick/NOTES-1.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/NOTES-1.5 -------------------------------------------------------------------------------- /yorick/NOTES-1.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/NOTES-1.6 -------------------------------------------------------------------------------- /yorick/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/README -------------------------------------------------------------------------------- /yorick/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/array.c -------------------------------------------------------------------------------- /yorick/ascio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/ascio.c -------------------------------------------------------------------------------- /yorick/autold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/autold.c -------------------------------------------------------------------------------- /yorick/bcast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/bcast.c -------------------------------------------------------------------------------- /yorick/bcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/bcast.h -------------------------------------------------------------------------------- /yorick/binio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/binio.c -------------------------------------------------------------------------------- /yorick/binio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/binio.h -------------------------------------------------------------------------------- /yorick/binobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/binobj.c -------------------------------------------------------------------------------- /yorick/binpdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/binpdb.c -------------------------------------------------------------------------------- /yorick/binstd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/binstd.c -------------------------------------------------------------------------------- /yorick/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/cache.c -------------------------------------------------------------------------------- /yorick/check.i: -------------------------------------------------------------------------------- 1 | #include "testfull.i" 2 | quit 3 | -------------------------------------------------------------------------------- /yorick/clog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/clog.c -------------------------------------------------------------------------------- /yorick/codger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/codger.c -------------------------------------------------------------------------------- /yorick/convrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/convrt.c -------------------------------------------------------------------------------- /yorick/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/debug.c -------------------------------------------------------------------------------- /yorick/defmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/defmem.c -------------------------------------------------------------------------------- /yorick/defmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/defmem.h -------------------------------------------------------------------------------- /yorick/dlsym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/dlsym.c -------------------------------------------------------------------------------- /yorick/fnctn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/fnctn.c -------------------------------------------------------------------------------- /yorick/fortrn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/fortrn.c -------------------------------------------------------------------------------- /yorick/funcdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/funcdef.c -------------------------------------------------------------------------------- /yorick/fwrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/fwrap.c -------------------------------------------------------------------------------- /yorick/graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/graph.c -------------------------------------------------------------------------------- /yorick/graph0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/graph0.c -------------------------------------------------------------------------------- /yorick/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/hash.h -------------------------------------------------------------------------------- /yorick/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/install.sh -------------------------------------------------------------------------------- /yorick/libdep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/libdep.sh -------------------------------------------------------------------------------- /yorick/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/list.c -------------------------------------------------------------------------------- /yorick/mdigest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/mdigest.c -------------------------------------------------------------------------------- /yorick/mdigest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/mdigest.h -------------------------------------------------------------------------------- /yorick/nonc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/nonc.c -------------------------------------------------------------------------------- /yorick/ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/ops.c -------------------------------------------------------------------------------- /yorick/ops0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/ops0.c -------------------------------------------------------------------------------- /yorick/ops1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/ops1.c -------------------------------------------------------------------------------- /yorick/ops2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/ops2.c -------------------------------------------------------------------------------- /yorick/ops3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/ops3.c -------------------------------------------------------------------------------- /yorick/opsv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/opsv.c -------------------------------------------------------------------------------- /yorick/oxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/oxy.c -------------------------------------------------------------------------------- /yorick/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/parse.c -------------------------------------------------------------------------------- /yorick/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/parse.h -------------------------------------------------------------------------------- /yorick/parsre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/parsre.c -------------------------------------------------------------------------------- /yorick/pathfun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/pathfun.c -------------------------------------------------------------------------------- /yorick/range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/range.c -------------------------------------------------------------------------------- /yorick/socky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/socky.c -------------------------------------------------------------------------------- /yorick/spawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/spawn.c -------------------------------------------------------------------------------- /yorick/std0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/std0.c -------------------------------------------------------------------------------- /yorick/std1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/std1.c -------------------------------------------------------------------------------- /yorick/std2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/std2.c -------------------------------------------------------------------------------- /yorick/style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/style.c -------------------------------------------------------------------------------- /yorick/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/task.c -------------------------------------------------------------------------------- /yorick/yapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/yapi.c -------------------------------------------------------------------------------- /yorick/yapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/yapi.h -------------------------------------------------------------------------------- /yorick/yasync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/yasync.h -------------------------------------------------------------------------------- /yorick/yconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/yconfig.sh -------------------------------------------------------------------------------- /yorick/yconfigf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/yconfigf.sh -------------------------------------------------------------------------------- /yorick/ydata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/ydata.c -------------------------------------------------------------------------------- /yorick/ydata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/ydata.h -------------------------------------------------------------------------------- /yorick/yhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/yhash.c -------------------------------------------------------------------------------- /yorick/yinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/yinput.c -------------------------------------------------------------------------------- /yorick/yio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/yio.c -------------------------------------------------------------------------------- /yorick/yio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/yio.h -------------------------------------------------------------------------------- /yorick/yorick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/yorick.c -------------------------------------------------------------------------------- /yorick/yrdwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/yrdwr.c -------------------------------------------------------------------------------- /yorick/ystr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/yorick/ystr.c -------------------------------------------------------------------------------- /ysite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/yorick/HEAD/ysite.sh --------------------------------------------------------------------------------