├── .gitignore ├── 3rdparty ├── build_linux.sh ├── build_osx.sh ├── build_win32.sh ├── build_win64.sh ├── include │ ├── ImathRandom.h │ └── loki │ │ ├── AbstractFactory.h │ │ ├── AssocVector.h │ │ ├── CachedFactory.h │ │ ├── ConstPolicy.h │ │ ├── DataGenerators.h │ │ ├── EmptyType.h │ │ ├── Factory.h │ │ ├── Function.h │ │ ├── Functor.h │ │ ├── HierarchyGenerators.h │ │ ├── Key.h │ │ ├── LockingPtr.h │ │ ├── LokiExport.h │ │ ├── LokiTypeInfo.h │ │ ├── MultiMethods.h │ │ ├── NullType.h │ │ ├── OrderedStatic.h │ │ ├── Pimpl.h │ │ ├── RefToValue.h │ │ ├── Register.h │ │ ├── SPCachedFactory.h │ │ ├── SafeFormat.h │ │ ├── ScopeGuard.h │ │ ├── Sequence.h │ │ ├── Singleton.h │ │ ├── SmallObj.h │ │ ├── SmartPtr.h │ │ ├── StrongPtr.h │ │ ├── Threads.h │ │ ├── Tuple.h │ │ ├── TypeManip.h │ │ ├── TypeTraits.h │ │ ├── Typelist.h │ │ ├── TypelistMacros.h │ │ ├── Visitor.h │ │ ├── flex │ │ ├── allocatorstringstorage.h │ │ ├── cowstringopt.h │ │ ├── flex_string.h │ │ ├── flex_string_details.h │ │ ├── flex_string_shell.h │ │ ├── simplestringstorage.h │ │ ├── smallstringopt.h │ │ └── vectorstringstorage.h │ │ ├── readme.txt │ │ ├── static_check.h │ │ └── yasli │ │ ├── platform.h │ │ ├── random.h │ │ ├── yasli_fill_iterator.h │ │ ├── yasli_memory.h │ │ ├── yasli_protocols.h │ │ ├── yasli_traits.h │ │ └── yasli_vector.h ├── packages │ ├── fftw-3.2.2-dll64.zip │ └── fftw-3.2.2.pl1-dll32.zip ├── src │ ├── blitz-0.9 │ │ ├── AUTHORS │ │ ├── Blitz-VS.NET.zip │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── ChangeLog.1 │ │ ├── INSTALL │ │ ├── LEGAL │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── README-VS.NET.txt │ │ ├── README.binutils │ │ ├── TODO │ │ ├── aclocal.m4 │ │ ├── benchmarks │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── acou3d.cpp │ │ │ ├── acou3db1.cpp │ │ │ ├── acou3db2.cpp │ │ │ ├── acou3db3.cpp │ │ │ ├── acou3db4.cpp │ │ │ ├── acou3df.f │ │ │ ├── acou3df2.f │ │ │ ├── acou3df90.f90 │ │ │ ├── acou3df902.f90 │ │ │ ├── acoustic.cpp │ │ │ ├── acousticf.f │ │ │ ├── acousticf2.f │ │ │ ├── acousticf90.f90 │ │ │ ├── acousticf902.f90 │ │ │ ├── arrdaxpy.cpp │ │ │ ├── arrdaxpy.m │ │ │ ├── arrdaxpy2.m │ │ │ ├── arrdaxpyf.f │ │ │ ├── arrexpr1.cpp │ │ │ ├── arrexpr1.m │ │ │ ├── cfd.cpp │ │ │ ├── cfdf.f │ │ │ ├── cfortran.h │ │ │ ├── chunky.cpp │ │ │ ├── compiletime.cpp │ │ │ ├── ctime-results │ │ │ ├── ctime1.cpp │ │ │ ├── ctime1v.cpp │ │ │ ├── ctime2.cpp │ │ │ ├── ctime2v.cpp │ │ │ ├── ctime3.cpp │ │ │ ├── ctime3v.cpp │ │ │ ├── ctime4.cpp │ │ │ ├── ctime4v.cpp │ │ │ ├── ctime5.cpp │ │ │ ├── ctime5c.cpp │ │ │ ├── ctime5v.cpp │ │ │ ├── daxpy.cpp │ │ │ ├── daxpy2.cpp │ │ │ ├── daxpyf90-2.f90 │ │ │ ├── daxpyf90.f90 │ │ │ ├── dot.cpp │ │ │ ├── dot2.cpp │ │ │ ├── echof2-back.f │ │ │ ├── echotune.cpp │ │ │ ├── echotune.m │ │ │ ├── echotunef.f │ │ │ ├── fdaxpy.f │ │ │ ├── fidaxpy.f │ │ │ ├── frek.m │ │ │ ├── haney.cpp │ │ │ ├── haneyf.f │ │ │ ├── hao-he-mark.cpp │ │ │ ├── hao-he.cpp │ │ │ ├── kepler.cpp │ │ │ ├── loop1-bug.cpp │ │ │ ├── loop1.cpp │ │ │ ├── loop10.cpp │ │ │ ├── loop10f.f │ │ │ ├── loop10f90.f90 │ │ │ ├── loop11.cpp │ │ │ ├── loop11f.f │ │ │ ├── loop11f90.f90 │ │ │ ├── loop12.cpp │ │ │ ├── loop12f.f │ │ │ ├── loop12f90.f90 │ │ │ ├── loop13.cpp │ │ │ ├── loop13f.f │ │ │ ├── loop13f90.f90 │ │ │ ├── loop14.cpp │ │ │ ├── loop14f.f │ │ │ ├── loop14f90.f90 │ │ │ ├── loop15.cpp │ │ │ ├── loop15f.f │ │ │ ├── loop15f90.f90 │ │ │ ├── loop16.cpp │ │ │ ├── loop16f.f │ │ │ ├── loop16f90.f90 │ │ │ ├── loop17.cpp │ │ │ ├── loop17f.f │ │ │ ├── loop17f90.f90 │ │ │ ├── loop18.cpp │ │ │ ├── loop18f.f │ │ │ ├── loop18f90.f90 │ │ │ ├── loop19.cpp │ │ │ ├── loop19f.f │ │ │ ├── loop19f90.f90 │ │ │ ├── loop1f.f │ │ │ ├── loop1f90.f90 │ │ │ ├── loop2.cpp │ │ │ ├── loop21.cpp │ │ │ ├── loop21f.f │ │ │ ├── loop21f90.f90 │ │ │ ├── loop22.cpp │ │ │ ├── loop22f.f │ │ │ ├── loop22f90.f90 │ │ │ ├── loop23.cpp │ │ │ ├── loop23f.f │ │ │ ├── loop23f90.f90 │ │ │ ├── loop24.cpp │ │ │ ├── loop24f.f │ │ │ ├── loop24f90.f90 │ │ │ ├── loop25.cpp │ │ │ ├── loop25f.f │ │ │ ├── loop25f90.f90 │ │ │ ├── loop2f.f │ │ │ ├── loop2f90.f90 │ │ │ ├── loop3.cpp │ │ │ ├── loop36.cpp │ │ │ ├── loop36f.f │ │ │ ├── loop36f90.f90 │ │ │ ├── loop3f.f │ │ │ ├── loop3f90.f90 │ │ │ ├── loop4.cpp │ │ │ ├── loop4f.f │ │ │ ├── loop4f90.f90 │ │ │ ├── loop5.cpp │ │ │ ├── loop5f.f │ │ │ ├── loop5f90.f90 │ │ │ ├── loop6.cpp │ │ │ ├── loop6f.f │ │ │ ├── loop6f90.f90 │ │ │ ├── loop8.cpp │ │ │ ├── loop8f.f │ │ │ ├── loop8f90.f90 │ │ │ ├── loop9.cpp │ │ │ ├── loop9f.f │ │ │ ├── loop9f90.f90 │ │ │ ├── loopstruct.cpp │ │ │ ├── looptest.cpp │ │ │ ├── makelogo.cpp │ │ │ ├── makeloops.cpp │ │ │ ├── plot_benchmarks.m.in │ │ │ ├── qcd.cpp │ │ │ ├── qcd.txt │ │ │ ├── qcdf.f │ │ │ ├── quinlan.cpp │ │ │ ├── stencil.cpp │ │ │ ├── stencilf.f │ │ │ ├── stencilf2.f │ │ │ ├── stencilf90.f90 │ │ │ ├── stenciln.cpp │ │ │ ├── tiny3.cpp │ │ │ └── tinydaxpy.cpp │ │ ├── bin │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── autotest │ │ │ └── includes │ │ ├── blitz │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── applics.h │ │ │ ├── array-impl.h │ │ │ ├── array-old.h │ │ │ ├── array.h │ │ │ ├── array │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── asexpr.h │ │ │ │ ├── bops.cc │ │ │ │ ├── cartesian.h │ │ │ │ ├── cgsolve.h │ │ │ │ ├── complex.cc │ │ │ │ ├── convolve.cc │ │ │ │ ├── convolve.h │ │ │ │ ├── cycle.cc │ │ │ │ ├── domain.h │ │ │ │ ├── et.h │ │ │ │ ├── eval.cc │ │ │ │ ├── expr.h │ │ │ │ ├── fastiter.h │ │ │ │ ├── funcs.h │ │ │ │ ├── functorExpr.h │ │ │ │ ├── geometry.h │ │ │ │ ├── indirect.h │ │ │ │ ├── interlace.cc │ │ │ │ ├── io.cc │ │ │ │ ├── iter.h │ │ │ │ ├── map.h │ │ │ │ ├── methods.cc │ │ │ │ ├── misc.cc │ │ │ │ ├── multi.h │ │ │ │ ├── newet-macros.h │ │ │ │ ├── newet.h │ │ │ │ ├── ops.cc │ │ │ │ ├── ops.h │ │ │ │ ├── reduce.cc │ │ │ │ ├── reduce.h │ │ │ │ ├── resize.cc │ │ │ │ ├── shape.h │ │ │ │ ├── slice.h │ │ │ │ ├── slicing.cc │ │ │ │ ├── stencil-et.h │ │ │ │ ├── stencilops.h │ │ │ │ ├── stencils.cc │ │ │ │ ├── stencils.h │ │ │ │ ├── storage.h │ │ │ │ ├── uops.cc │ │ │ │ ├── where.h │ │ │ │ └── zip.h │ │ │ ├── bench.cc │ │ │ ├── bench.h │ │ │ ├── benchext.cc │ │ │ ├── benchext.h │ │ │ ├── blitz.h │ │ │ ├── bzconfig.h │ │ │ ├── bzdebug.h │ │ │ ├── compiler.h │ │ │ ├── config.h.in │ │ │ ├── etbase.h │ │ │ ├── extremum.h │ │ │ ├── funcs.h │ │ │ ├── generate │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── arroperands.h │ │ │ │ ├── arroptuple.h │ │ │ │ ├── bzfstream.h │ │ │ │ ├── genarrbops.cpp │ │ │ │ ├── genarruops.cpp │ │ │ │ ├── genmatbops.cpp │ │ │ │ ├── genmathfunc.cpp │ │ │ │ ├── genmatuops.cpp │ │ │ │ ├── genpromote.cpp │ │ │ │ ├── genvecbfn.cpp │ │ │ │ ├── genvecbops.cpp │ │ │ │ ├── genvecuops.cpp │ │ │ │ ├── genvecwhere.cpp │ │ │ │ ├── operands.h │ │ │ │ ├── operands2.h │ │ │ │ ├── optuple.h │ │ │ │ └── optuple2.h │ │ │ ├── gnu │ │ │ │ └── bzconfig.h │ │ │ ├── indexexpr.h │ │ │ ├── limits-hack.h │ │ │ ├── listinit.h │ │ │ ├── matbops.h │ │ │ ├── matdiag.h │ │ │ ├── matexpr.h │ │ │ ├── matgen.h │ │ │ ├── mathf2.h │ │ │ ├── mathfunc.h │ │ │ ├── matltri.h │ │ │ ├── matref.h │ │ │ ├── matrix.cc │ │ │ ├── matrix.h │ │ │ ├── matsymm.h │ │ │ ├── mattoep.h │ │ │ ├── matuops.h │ │ │ ├── matutri.h │ │ │ ├── memblock.cc │ │ │ ├── memblock.h │ │ │ ├── meta │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── dot.h │ │ │ │ ├── matassign.h │ │ │ │ ├── matmat.h │ │ │ │ ├── matvec.h │ │ │ │ ├── metaprog.h │ │ │ │ ├── product.h │ │ │ │ ├── sum.h │ │ │ │ └── vecassign.h │ │ │ ├── minmax.h │ │ │ ├── mstruct.h │ │ │ ├── numinquire.h │ │ │ ├── numtrait.h │ │ │ ├── ops.h │ │ │ ├── prettyprint.h │ │ │ ├── promote-old.h │ │ │ ├── promote.h │ │ │ ├── rand-dunif.h │ │ │ ├── rand-mt.h │ │ │ ├── rand-normal.h │ │ │ ├── rand-tt800.h │ │ │ ├── rand-uniform.h │ │ │ ├── random.h │ │ │ ├── randref.h │ │ │ ├── range.h │ │ │ ├── reduce.h │ │ │ ├── shapecheck.h │ │ │ ├── tau.h │ │ │ ├── timer.h │ │ │ ├── tiny.h │ │ │ ├── tinymat.h │ │ │ ├── tinymatexpr.h │ │ │ ├── tinymatio.cc │ │ │ ├── tinyvec-et.h │ │ │ ├── tinyvec.cc │ │ │ ├── tinyvec.h │ │ │ ├── tinyvecio.cc │ │ │ ├── tinyveciter.h │ │ │ ├── traversal.cc │ │ │ ├── traversal.h │ │ │ ├── tuning.h │ │ │ ├── tvcross.h │ │ │ ├── tvecglobs.h │ │ │ ├── update.h │ │ │ ├── vecaccum.cc │ │ │ ├── vecall.cc │ │ │ ├── vecany.cc │ │ │ ├── vecbfn.cc │ │ │ ├── vecbops.cc │ │ │ ├── veccount.cc │ │ │ ├── vecdelta.cc │ │ │ ├── vecdot.cc │ │ │ ├── vecexpr.h │ │ │ ├── vecexprwrap.h │ │ │ ├── vecglobs.cc │ │ │ ├── vecglobs.h │ │ │ ├── vecio.cc │ │ │ ├── veciter.h │ │ │ ├── vecmax.cc │ │ │ ├── vecmin.cc │ │ │ ├── vecnorm.cc │ │ │ ├── vecnorm1.cc │ │ │ ├── vecpick.cc │ │ │ ├── vecpick.h │ │ │ ├── vecpickio.cc │ │ │ ├── vecpickiter.h │ │ │ ├── vecsum.cc │ │ │ ├── vector-et.h │ │ │ ├── vector.cc │ │ │ ├── vector.h │ │ │ ├── vecuops.cc │ │ │ ├── vecwhere.cc │ │ │ ├── vecwhere.h │ │ │ ├── wrap-climits.h │ │ │ ├── zero.cc │ │ │ └── zero.h │ │ ├── config │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── depcomp │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ ├── mdate-sh │ │ │ ├── missing │ │ │ └── texinfo.tex │ │ ├── configure │ │ ├── configure.ac │ │ ├── doc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── blitz.dvi │ │ │ ├── blitz.gif │ │ │ ├── blitz.html │ │ │ ├── blitz.info │ │ │ ├── blitz.pdf │ │ │ ├── blitz.ps │ │ │ ├── blitz_1.html │ │ │ ├── blitz_10.html │ │ │ ├── blitz_11.html │ │ │ ├── blitz_12.html │ │ │ ├── blitz_13.html │ │ │ ├── blitz_14.html │ │ │ ├── blitz_15.html │ │ │ ├── blitz_16.html │ │ │ ├── blitz_2.html │ │ │ ├── blitz_3.html │ │ │ ├── blitz_4.html │ │ │ ├── blitz_5.html │ │ │ ├── blitz_6.html │ │ │ ├── blitz_7.html │ │ │ ├── blitz_8.html │ │ │ ├── blitz_9.html │ │ │ ├── blitz_abt.html │ │ │ ├── blitz_fot.html │ │ │ ├── blitz_ovr.html │ │ │ ├── blitz_toc.html │ │ │ ├── blitztiny.jpg │ │ │ ├── doxygen │ │ │ │ ├── Doxyfile.in │ │ │ │ ├── Makefile.am │ │ │ │ └── Makefile.in │ │ │ ├── examples │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── cast.cpp │ │ │ │ ├── debug.cpp │ │ │ │ ├── dump.cpp │ │ │ │ ├── fixed-class.cpp │ │ │ │ ├── fixed-point.h │ │ │ │ ├── fixed.cpp │ │ │ │ ├── io.cpp │ │ │ │ ├── io.data │ │ │ │ ├── makefile.example │ │ │ │ ├── outer.cpp │ │ │ │ ├── output.cpp │ │ │ │ ├── range.cpp │ │ │ │ ├── simple.cpp │ │ │ │ ├── slicing.cpp │ │ │ │ ├── storage.cpp │ │ │ │ ├── strideslice.cpp │ │ │ │ └── xor.cpp │ │ │ ├── indirect.eps │ │ │ ├── indirect.fig │ │ │ ├── indirect.gif │ │ │ ├── indirect.pdf │ │ │ ├── indirect.txt │ │ │ ├── sinsoid.eps │ │ │ ├── sinsoid.gif │ │ │ ├── sinsoid.pdf │ │ │ ├── sinsoid.txt │ │ │ ├── slice.eps │ │ │ ├── slice.fig │ │ │ ├── slice.gif │ │ │ ├── slice.pdf │ │ │ ├── slice.txt │ │ │ ├── stamp-vti │ │ │ ├── stencils │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ └── dump-stencil.cpp │ │ │ ├── strideslice.eps │ │ │ ├── strideslice.fig │ │ │ ├── strideslice.gif │ │ │ ├── strideslice.pdf │ │ │ ├── strideslice.txt │ │ │ ├── tensor1.eps │ │ │ ├── tensor1.fig │ │ │ ├── tensor1.gif │ │ │ ├── tensor1.pdf │ │ │ └── tensor1.txt │ │ ├── examples │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── array.cpp │ │ │ ├── cartesian.cpp │ │ │ ├── cast.cpp │ │ │ ├── cfd.cpp │ │ │ ├── complex-test.cpp │ │ │ ├── convolve.cpp │ │ │ ├── curldiv.cpp │ │ │ ├── deriv.cpp │ │ │ ├── diff.cpp │ │ │ ├── erf.cpp │ │ │ ├── fixed.cpp │ │ │ ├── indirect.cpp │ │ │ ├── io.cpp │ │ │ ├── iter.cpp │ │ │ ├── matmult.cpp │ │ │ ├── nested.cpp │ │ │ ├── numinquire.cpp │ │ │ ├── outer.cpp │ │ │ ├── pauli.cpp │ │ │ ├── pick.cpp │ │ │ ├── polymorph.cpp │ │ │ ├── prettyprint.cpp │ │ │ ├── profile.cpp │ │ │ ├── qcd.cpp │ │ │ ├── rand2.cpp │ │ │ ├── random.cpp │ │ │ ├── rangexpr.cpp │ │ │ ├── reduce.cpp │ │ │ ├── simple.cpp │ │ │ ├── slicing.cpp │ │ │ ├── stencil.cpp │ │ │ ├── stencil2.cpp │ │ │ ├── stencil3.cpp │ │ │ ├── stencil4.f │ │ │ ├── stencilet.cpp │ │ │ ├── storage.cpp │ │ │ ├── tiny.cpp │ │ │ ├── tiny2.cpp │ │ │ ├── tiny3.cpp │ │ │ ├── transform.cpp │ │ │ ├── useret.cpp │ │ │ ├── where.cpp │ │ │ └── whitt.cpp │ │ ├── lib │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── readme.txt │ │ ├── m4 │ │ │ ├── ac_check_cxx_features.m4 │ │ │ ├── ac_compiler_specific_header.m4 │ │ │ ├── ac_compilers_64bits.m4 │ │ │ ├── ac_cxx_bool.m4 │ │ │ ├── ac_cxx_complex_math_in_namespace_std.m4 │ │ │ ├── ac_cxx_const_cast.m4 │ │ │ ├── ac_cxx_default_template_parameters.m4 │ │ │ ├── ac_cxx_dynamic_cast.m4 │ │ │ ├── ac_cxx_enable_debug.m4 │ │ │ ├── ac_cxx_enable_optimize.m4 │ │ │ ├── ac_cxx_enum_computations.m4 │ │ │ ├── ac_cxx_enum_computations_with_cast.m4 │ │ │ ├── ac_cxx_exceptions.m4 │ │ │ ├── ac_cxx_explicit.m4 │ │ │ ├── ac_cxx_explicit_template_function_qualification.m4 │ │ │ ├── ac_cxx_flags_preset.m4 │ │ │ ├── ac_cxx_full_specialization_syntax.m4 │ │ │ ├── ac_cxx_function_nontype_parameters.m4 │ │ │ ├── ac_cxx_general.m4 │ │ │ ├── ac_cxx_have_climits.m4 │ │ │ ├── ac_cxx_have_complex.m4 │ │ │ ├── ac_cxx_have_complex_fcns.m4 │ │ │ ├── ac_cxx_have_complex_math1.m4 │ │ │ ├── ac_cxx_have_complex_math2.m4 │ │ │ ├── ac_cxx_have_ieee_math.m4 │ │ │ ├── ac_cxx_have_numeric_limits.m4 │ │ │ ├── ac_cxx_have_rusage.m4 │ │ │ ├── ac_cxx_have_std.m4 │ │ │ ├── ac_cxx_have_stl.m4 │ │ │ ├── ac_cxx_have_system_v_math.m4 │ │ │ ├── ac_cxx_have_valarray.m4 │ │ │ ├── ac_cxx_isnan_in_namespace_std.m4 │ │ │ ├── ac_cxx_keywords.m4 │ │ │ ├── ac_cxx_math_fn_in_namespace_std.m4 │ │ │ ├── ac_cxx_member_constants.m4 │ │ │ ├── ac_cxx_member_templates.m4 │ │ │ ├── ac_cxx_member_templates_outside_class.m4 │ │ │ ├── ac_cxx_mutable.m4 │ │ │ ├── ac_cxx_namespaces.m4 │ │ │ ├── ac_cxx_nceg_restrict.m4 │ │ │ ├── ac_cxx_nceg_restrict_egcs.m4 │ │ │ ├── ac_cxx_old_for_scoping.m4 │ │ │ ├── ac_cxx_partial_ordering.m4 │ │ │ ├── ac_cxx_partial_specialization.m4 │ │ │ ├── ac_cxx_reinterpret_cast.m4 │ │ │ ├── ac_cxx_rtti.m4 │ │ │ ├── ac_cxx_standard_library.m4 │ │ │ ├── ac_cxx_static_cast.m4 │ │ │ ├── ac_cxx_template_keyword_qualifier.m4 │ │ │ ├── ac_cxx_template_qualified_base_class.m4 │ │ │ ├── ac_cxx_template_qualified_return_type.m4 │ │ │ ├── ac_cxx_template_scoped_argument_matching.m4 │ │ │ ├── ac_cxx_templates.m4 │ │ │ ├── ac_cxx_templates_as_template_arguments.m4 │ │ │ ├── ac_cxx_templates_features.m4 │ │ │ ├── ac_cxx_type_casts.m4 │ │ │ ├── ac_cxx_type_promotion.m4 │ │ │ ├── ac_cxx_typename.m4 │ │ │ ├── ac_cxx_use_numtrait.m4 │ │ │ ├── ac_env.m4 │ │ │ ├── ac_fortran_flags_preset.m4 │ │ │ ├── ac_info.m4 │ │ │ ├── ac_lib_blas.m4 │ │ │ ├── ac_prog_doxygen.m4 │ │ │ ├── ax_create_pkgconfig_info.m4 │ │ │ ├── ax_dirname.m4 │ │ │ └── ax_prefix_config_h.m4 │ │ ├── random │ │ │ ├── F.h │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── beta.h │ │ │ ├── chisquare.h │ │ │ ├── default.h │ │ │ ├── discrete-uniform.h │ │ │ ├── exponential.h │ │ │ ├── gamma.h │ │ │ ├── mt.h │ │ │ ├── normal.h │ │ │ └── uniform.h │ │ ├── src │ │ │ └── globals.cpp │ │ └── testsuite │ │ │ ├── Adnene-Ben-Abdallah-1.cpp │ │ │ ├── Adnene-Ben-Abdallah-2.cpp │ │ │ ├── Josef-Wagenhuber.cpp │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Olaf-Ronneberger-1.cpp │ │ │ ├── Ulisses-Mello-1.cpp │ │ │ ├── arrayresize.cpp │ │ │ ├── chris-jeffery-1.cpp │ │ │ ├── chris-jeffery-2.cpp │ │ │ ├── chris-jeffery-3.cpp │ │ │ ├── complex-test.cpp │ │ │ ├── constarray.cpp │ │ │ ├── contiguous.cpp │ │ │ ├── copy.cpp │ │ │ ├── ctors.cpp │ │ │ ├── derrick-bass-1.cpp │ │ │ ├── derrick-bass-3.cpp │ │ │ ├── exprctor.cpp │ │ │ ├── extract.cpp │ │ │ ├── free.cpp │ │ │ ├── gary-huber-1.cpp │ │ │ ├── initialize.cpp │ │ │ ├── interlace.cpp │ │ │ ├── iter.cpp │ │ │ ├── loop1.cpp │ │ │ ├── matthias-troyer-1.cpp │ │ │ ├── matthias-troyer-2.cpp │ │ │ ├── mattias-lindstroem-1.cpp │ │ │ ├── minmax.cpp │ │ │ ├── minsumpow.cpp │ │ │ ├── module1.cpp │ │ │ ├── module2.cpp │ │ │ ├── newet.cpp │ │ │ ├── peter-bienstman-1.cpp │ │ │ ├── peter-bienstman-2.cpp │ │ │ ├── peter-bienstman-3.cpp │ │ │ ├── peter-bienstman-4.cpp │ │ │ ├── peter-bienstman-5.cpp │ │ │ ├── peter-nordlund-1.cpp │ │ │ ├── peter-nordlund-2.cpp │ │ │ ├── peter-nordlund-3.cpp │ │ │ ├── promote.cpp │ │ │ ├── qcd.cpp │ │ │ ├── reduce.cpp │ │ │ ├── reindex.cpp │ │ │ ├── reverse.cpp │ │ │ ├── shape.cpp │ │ │ ├── shapecheck.cpp │ │ │ ├── storage.cpp │ │ │ ├── stub.cpp │ │ │ ├── testsuite.h │ │ │ ├── theodore-papadopoulo-1.cpp │ │ │ ├── tinymat.cpp │ │ │ ├── tinyvec.cpp │ │ │ ├── transpose.cpp │ │ │ ├── troyer-genilloud.cpp │ │ │ ├── wei-ku-1.cpp │ │ │ └── where.cpp │ ├── blitz │ │ ├── .cvsignore │ │ ├── AUTHORS │ │ ├── Blitz-VS.NET.zip │ │ ├── Blitz-VS2005.NET.zip │ │ ├── COPYING │ │ ├── COPYRIGHT │ │ ├── CVS │ │ │ ├── Entries │ │ │ ├── Entries.Log │ │ │ ├── Repository │ │ │ └── Root │ │ ├── ChangeLog │ │ ├── ChangeLog.1 │ │ ├── INSTALL │ │ ├── LEGAL │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── README-VS.NET.txt │ │ ├── README.binutils │ │ ├── TODO │ │ ├── aclocal.m4 │ │ ├── autom4te.cache │ │ │ ├── output.0 │ │ │ ├── output.1 │ │ │ ├── requests │ │ │ ├── traces.0 │ │ │ └── traces.1 │ │ ├── benchmarks │ │ │ ├── .cvsignore │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ └── Root │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── acou3d.cpp │ │ │ ├── acou3db1.cpp │ │ │ ├── acou3db2.cpp │ │ │ ├── acou3db3.cpp │ │ │ ├── acou3db4.cpp │ │ │ ├── acou3df.f │ │ │ ├── acou3df2.f │ │ │ ├── acou3df90.f90 │ │ │ ├── acou3df902.f90 │ │ │ ├── acoustic.cpp │ │ │ ├── acousticf.f │ │ │ ├── acousticf2.f │ │ │ ├── acousticf90.f90 │ │ │ ├── acousticf902.f90 │ │ │ ├── arrdaxpy.cpp │ │ │ ├── arrdaxpy.m │ │ │ ├── arrdaxpy2.m │ │ │ ├── arrdaxpyf.f │ │ │ ├── arrexpr1.cpp │ │ │ ├── arrexpr1.m │ │ │ ├── cfd.cpp │ │ │ ├── cfdf.f │ │ │ ├── cfortran.h │ │ │ ├── chunky.cpp │ │ │ ├── compiletime.cpp │ │ │ ├── ctime-results │ │ │ ├── ctime1.cpp │ │ │ ├── ctime1v.cpp │ │ │ ├── ctime2.cpp │ │ │ ├── ctime2v.cpp │ │ │ ├── ctime3.cpp │ │ │ ├── ctime3v.cpp │ │ │ ├── ctime4.cpp │ │ │ ├── ctime4v.cpp │ │ │ ├── ctime5.cpp │ │ │ ├── ctime5c.cpp │ │ │ ├── ctime5v.cpp │ │ │ ├── daxpy.cpp │ │ │ ├── daxpy2.cpp │ │ │ ├── daxpyf90-2.f90 │ │ │ ├── daxpyf90.f90 │ │ │ ├── dot.cpp │ │ │ ├── dot2.cpp │ │ │ ├── echof2-back.f │ │ │ ├── echotune.cpp │ │ │ ├── echotune.m │ │ │ ├── echotunef.f │ │ │ ├── fdaxpy.f │ │ │ ├── fidaxpy.f │ │ │ ├── frek.m │ │ │ ├── haney.cpp │ │ │ ├── haneyf.f │ │ │ ├── hao-he-mark.cpp │ │ │ ├── hao-he.cpp │ │ │ ├── iter.cpp │ │ │ ├── kepler.cpp │ │ │ ├── loop1-bug.cpp │ │ │ ├── loop1.cpp │ │ │ ├── loop10.cpp │ │ │ ├── loop10f.f │ │ │ ├── loop10f90.f90 │ │ │ ├── loop11.cpp │ │ │ ├── loop11f.f │ │ │ ├── loop11f90.f90 │ │ │ ├── loop12.cpp │ │ │ ├── loop12f.f │ │ │ ├── loop12f90.f90 │ │ │ ├── loop13.cpp │ │ │ ├── loop13f.f │ │ │ ├── loop13f90.f90 │ │ │ ├── loop14.cpp │ │ │ ├── loop14f.f │ │ │ ├── loop14f90.f90 │ │ │ ├── loop15.cpp │ │ │ ├── loop15f.f │ │ │ ├── loop15f90.f90 │ │ │ ├── loop16.cpp │ │ │ ├── loop16f.f │ │ │ ├── loop16f90.f90 │ │ │ ├── loop17.cpp │ │ │ ├── loop17f.f │ │ │ ├── loop17f90.f90 │ │ │ ├── loop18.cpp │ │ │ ├── loop18f.f │ │ │ ├── loop18f90.f90 │ │ │ ├── loop19.cpp │ │ │ ├── loop19f.f │ │ │ ├── loop19f90.f90 │ │ │ ├── loop1f.f │ │ │ ├── loop1f90.f90 │ │ │ ├── loop2.cpp │ │ │ ├── loop21.cpp │ │ │ ├── loop21f.f │ │ │ ├── loop21f90.f90 │ │ │ ├── loop22.cpp │ │ │ ├── loop22f.f │ │ │ ├── loop22f90.f90 │ │ │ ├── loop23.cpp │ │ │ ├── loop23f.f │ │ │ ├── loop23f90.f90 │ │ │ ├── loop24.cpp │ │ │ ├── loop24f.f │ │ │ ├── loop24f90.f90 │ │ │ ├── loop25.cpp │ │ │ ├── loop25f.f │ │ │ ├── loop25f90.f90 │ │ │ ├── loop2f.f │ │ │ ├── loop2f90.f90 │ │ │ ├── loop3.cpp │ │ │ ├── loop36.cpp │ │ │ ├── loop36f.f │ │ │ ├── loop36f90.f90 │ │ │ ├── loop3f.f │ │ │ ├── loop3f90.f90 │ │ │ ├── loop4.cpp │ │ │ ├── loop4f.f │ │ │ ├── loop4f90.f90 │ │ │ ├── loop5.cpp │ │ │ ├── loop5f.f │ │ │ ├── loop5f90.f90 │ │ │ ├── loop6.cpp │ │ │ ├── loop6f.f │ │ │ ├── loop6f90.f90 │ │ │ ├── loop8.cpp │ │ │ ├── loop8f.f │ │ │ ├── loop8f90.f90 │ │ │ ├── loop9.cpp │ │ │ ├── loop9f.f │ │ │ ├── loop9f90.f90 │ │ │ ├── loops.data │ │ │ ├── loopstruct.cpp │ │ │ ├── looptest.cpp │ │ │ ├── makelogo.cpp │ │ │ ├── makeloops.cpp │ │ │ ├── plot_benchmarks.m.in │ │ │ ├── qcd.cpp │ │ │ ├── qcd.txt │ │ │ ├── qcdf.f │ │ │ ├── quinlan.cpp │ │ │ ├── stencil.cpp │ │ │ ├── stencilf.f │ │ │ ├── stencilf2.f │ │ │ ├── stencilf90.f90 │ │ │ ├── stenciln.cpp │ │ │ ├── tiny3.cpp │ │ │ └── tinydaxpy.cpp │ │ ├── bin │ │ │ ├── .cvsignore │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ └── Root │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── autotest │ │ │ └── includes │ │ ├── blitz │ │ │ ├── .cvsignore │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Entries.Log │ │ │ │ ├── Repository │ │ │ │ └── Root │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── applics.h │ │ │ ├── array-impl.h │ │ │ ├── array-old.h │ │ │ ├── array.h │ │ │ ├── array │ │ │ │ ├── .cvsignore │ │ │ │ ├── CVS │ │ │ │ │ ├── Entries │ │ │ │ │ ├── Repository │ │ │ │ │ └── Root │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── asexpr.h │ │ │ │ ├── bops.cc │ │ │ │ ├── cartesian.h │ │ │ │ ├── cgsolve.h │ │ │ │ ├── complex.cc │ │ │ │ ├── convolve.cc │ │ │ │ ├── convolve.h │ │ │ │ ├── cycle.cc │ │ │ │ ├── domain.h │ │ │ │ ├── et.h │ │ │ │ ├── eval.cc │ │ │ │ ├── expr.h │ │ │ │ ├── fastiter.h │ │ │ │ ├── funcs.h │ │ │ │ ├── functorExpr.h │ │ │ │ ├── geometry.h │ │ │ │ ├── indirect.h │ │ │ │ ├── interlace.cc │ │ │ │ ├── io.cc │ │ │ │ ├── iter.h │ │ │ │ ├── map.h │ │ │ │ ├── methods.cc │ │ │ │ ├── misc.cc │ │ │ │ ├── multi.h │ │ │ │ ├── newet-macros.h │ │ │ │ ├── newet.h │ │ │ │ ├── ops.cc │ │ │ │ ├── ops.h │ │ │ │ ├── reduce.cc │ │ │ │ ├── reduce.h │ │ │ │ ├── resize.cc │ │ │ │ ├── shape.h │ │ │ │ ├── slice.h │ │ │ │ ├── slicing.cc │ │ │ │ ├── stencil-et.h │ │ │ │ ├── stencilops.h │ │ │ │ ├── stencils.cc │ │ │ │ ├── stencils.h │ │ │ │ ├── storage.h │ │ │ │ ├── uops.cc │ │ │ │ ├── where.h │ │ │ │ └── zip.h │ │ │ ├── bench.cc │ │ │ ├── bench.h │ │ │ ├── benchext.cc │ │ │ ├── benchext.h │ │ │ ├── blitz.h │ │ │ ├── bzconfig.h │ │ │ ├── bzdebug.h │ │ │ ├── compiler.h │ │ │ ├── config.h.in │ │ │ ├── etbase.h │ │ │ ├── extremum.h │ │ │ ├── funcs.h │ │ │ ├── generate │ │ │ │ ├── .cvsignore │ │ │ │ ├── CVS │ │ │ │ │ ├── Entries │ │ │ │ │ ├── Repository │ │ │ │ │ └── Root │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── arroperands.h │ │ │ │ ├── arroptuple.h │ │ │ │ ├── bzfstream.h │ │ │ │ ├── genarrbops.cpp │ │ │ │ ├── genarruops.cpp │ │ │ │ ├── genmatbops.cpp │ │ │ │ ├── genmathfunc.cpp │ │ │ │ ├── genmatuops.cpp │ │ │ │ ├── genpromote.cpp │ │ │ │ ├── genvecbfn.cpp │ │ │ │ ├── genvecbops.cpp │ │ │ │ ├── genvecuops.cpp │ │ │ │ ├── genvecwhere.cpp │ │ │ │ ├── operands.h │ │ │ │ ├── operands2.h │ │ │ │ ├── optuple.h │ │ │ │ └── optuple2.h │ │ │ ├── indexexpr.h │ │ │ ├── limits-hack.h │ │ │ ├── listinit.h │ │ │ ├── matbops.h │ │ │ ├── matdiag.h │ │ │ ├── matexpr.h │ │ │ ├── matgen.h │ │ │ ├── mathf2.h │ │ │ ├── mathfunc.h │ │ │ ├── matltri.h │ │ │ ├── matref.h │ │ │ ├── matrix.cc │ │ │ ├── matrix.h │ │ │ ├── matsymm.h │ │ │ ├── mattoep.h │ │ │ ├── matuops.h │ │ │ ├── matutri.h │ │ │ ├── memblock.cc │ │ │ ├── memblock.h │ │ │ ├── meta │ │ │ │ ├── .cvsignore │ │ │ │ ├── CVS │ │ │ │ │ ├── Entries │ │ │ │ │ ├── Repository │ │ │ │ │ └── Root │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── dot.h │ │ │ │ ├── matassign.h │ │ │ │ ├── matmat.h │ │ │ │ ├── matvec.h │ │ │ │ ├── metaprog.h │ │ │ │ ├── product.h │ │ │ │ ├── sum.h │ │ │ │ └── vecassign.h │ │ │ ├── minmax.h │ │ │ ├── mstruct.h │ │ │ ├── numinquire.h │ │ │ ├── numtrait.h │ │ │ ├── ops.h │ │ │ ├── prettyprint.h │ │ │ ├── promote-old.h │ │ │ ├── promote.h │ │ │ ├── rand-dunif.h │ │ │ ├── rand-mt.h │ │ │ ├── rand-normal.h │ │ │ ├── rand-tt800.h │ │ │ ├── rand-uniform.h │ │ │ ├── random.h │ │ │ ├── randref.h │ │ │ ├── range.h │ │ │ ├── reduce.h │ │ │ ├── shapecheck.h │ │ │ ├── tau.h │ │ │ ├── timer.h │ │ │ ├── tiny.h │ │ │ ├── tinymat.h │ │ │ ├── tinymatexpr.h │ │ │ ├── tinymatio.cc │ │ │ ├── tinyvec-et.h │ │ │ ├── tinyvec.cc │ │ │ ├── tinyvec.h │ │ │ ├── tinyvecio.cc │ │ │ ├── tinyveciter.h │ │ │ ├── traversal.cc │ │ │ ├── traversal.h │ │ │ ├── tuning.h │ │ │ ├── tvcross.h │ │ │ ├── tvecglobs.h │ │ │ ├── update.h │ │ │ ├── vecaccum.cc │ │ │ ├── vecall.cc │ │ │ ├── vecany.cc │ │ │ ├── vecbfn.cc │ │ │ ├── vecbops.cc │ │ │ ├── veccount.cc │ │ │ ├── vecdelta.cc │ │ │ ├── vecdot.cc │ │ │ ├── vecexpr.h │ │ │ ├── vecexprwrap.h │ │ │ ├── vecglobs.cc │ │ │ ├── vecglobs.h │ │ │ ├── vecio.cc │ │ │ ├── veciter.h │ │ │ ├── vecmax.cc │ │ │ ├── vecmin.cc │ │ │ ├── vecnorm.cc │ │ │ ├── vecnorm1.cc │ │ │ ├── vecpick.cc │ │ │ ├── vecpick.h │ │ │ ├── vecpickio.cc │ │ │ ├── vecpickiter.h │ │ │ ├── vecproduct.cc │ │ │ ├── vecsum.cc │ │ │ ├── vector-et.h │ │ │ ├── vector.cc │ │ │ ├── vector.h │ │ │ ├── vecuops.cc │ │ │ ├── vecwhere.cc │ │ │ ├── vecwhere.h │ │ │ ├── wrap-climits.h │ │ │ ├── zero.cc │ │ │ └── zero.h │ │ ├── compiler │ │ │ ├── .cvsignore │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ └── Root │ │ │ ├── LEGAL │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── bool.cpp │ │ │ ├── bzconfig │ │ │ ├── climits.cpp │ │ │ ├── cmthscop.cpp │ │ │ ├── complex.cpp │ │ │ ├── compmath.cpp │ │ │ ├── constcst.cpp │ │ │ ├── cstd.cpp │ │ │ ├── default.cpp │ │ │ ├── dynamic.cpp │ │ │ ├── elabbase.cpp │ │ │ ├── elabret.cpp │ │ │ ├── enumcmp2.cpp │ │ │ ├── enumcomp.cpp │ │ │ ├── except.cpp │ │ │ ├── explicit.cpp │ │ │ ├── fullspec.cpp │ │ │ ├── getruse.cpp │ │ │ ├── ieeemath.cpp │ │ │ ├── instant.cpp │ │ │ ├── mathscop.cpp │ │ │ ├── membcnst.cpp │ │ │ ├── membtmp2.cpp │ │ │ ├── membtmpl.cpp │ │ │ ├── mutable.cpp │ │ │ ├── namespac.cpp │ │ │ ├── nontype.cpp │ │ │ ├── numlimit.cpp │ │ │ ├── numtrait.cpp │ │ │ ├── oldfor.cpp │ │ │ ├── partial.cpp │ │ │ ├── porder.cpp │ │ │ ├── promote.cpp │ │ │ ├── reinterp.cpp │ │ │ ├── restric2.cpp │ │ │ ├── restrict.cpp │ │ │ ├── rtti.cpp │ │ │ ├── statcast.cpp │ │ │ ├── std.cpp │ │ │ ├── stl.cpp │ │ │ ├── sysvmath.cpp │ │ │ ├── tempkey.cpp │ │ │ ├── template.cpp │ │ │ ├── tempqmt.cpp │ │ │ ├── tempqual.cpp │ │ │ ├── temptemp.cpp │ │ │ ├── typename.cpp │ │ │ ├── vac.icc │ │ │ └── valarray.cpp │ │ ├── config │ │ │ ├── .cvsignore │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ └── Root │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── depcomp │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ ├── mdate-sh │ │ │ ├── missing │ │ │ └── texinfo.tex │ │ ├── configure │ │ ├── configure.ac │ │ ├── demos │ │ │ ├── .cvsignore │ │ │ └── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ └── Root │ │ ├── doc │ │ │ ├── .cvsignore │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Entries.Log │ │ │ │ ├── Repository │ │ │ │ └── Root │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── blitz.gif │ │ │ ├── blitztiny.jpg │ │ │ ├── doxygen │ │ │ │ ├── .cvsignore │ │ │ │ ├── CVS │ │ │ │ │ ├── Entries │ │ │ │ │ ├── Repository │ │ │ │ │ └── Root │ │ │ │ ├── Doxyfile.in │ │ │ │ ├── Makefile.am │ │ │ │ └── Makefile.in │ │ │ ├── examples │ │ │ │ ├── .cvsignore │ │ │ │ ├── CVS │ │ │ │ │ ├── Entries │ │ │ │ │ ├── Repository │ │ │ │ │ └── Root │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── cast.cpp │ │ │ │ ├── debug.cpp │ │ │ │ ├── dump.cpp │ │ │ │ ├── fixed-class.cpp │ │ │ │ ├── fixed-point.h │ │ │ │ ├── fixed.cpp │ │ │ │ ├── io.cpp │ │ │ │ ├── io.data │ │ │ │ ├── makefile.example │ │ │ │ ├── outer.cpp │ │ │ │ ├── output.cpp │ │ │ │ ├── range.cpp │ │ │ │ ├── simple.cpp │ │ │ │ ├── slicing.cpp │ │ │ │ ├── storage.cpp │ │ │ │ ├── strideslice.cpp │ │ │ │ └── xor.cpp │ │ │ ├── indirect.eps │ │ │ ├── indirect.fig │ │ │ ├── indirect.gif │ │ │ ├── indirect.pdf │ │ │ ├── indirect.txt │ │ │ ├── makedatestring │ │ │ ├── sinsoid.eps │ │ │ ├── sinsoid.gif │ │ │ ├── sinsoid.pdf │ │ │ ├── sinsoid.txt │ │ │ ├── slice.eps │ │ │ ├── slice.fig │ │ │ ├── slice.gif │ │ │ ├── slice.pdf │ │ │ ├── slice.txt │ │ │ ├── stamp-vti │ │ │ ├── stencils │ │ │ │ ├── .cvsignore │ │ │ │ ├── CVS │ │ │ │ │ ├── Entries │ │ │ │ │ ├── Repository │ │ │ │ │ └── Root │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ └── dump-stencil.cpp │ │ │ ├── strideslice.eps │ │ │ ├── strideslice.fig │ │ │ ├── strideslice.gif │ │ │ ├── strideslice.pdf │ │ │ ├── strideslice.txt │ │ │ ├── tensor1.eps │ │ │ ├── tensor1.fig │ │ │ ├── tensor1.gif │ │ │ ├── tensor1.pdf │ │ │ └── tensor1.txt │ │ ├── examples │ │ │ ├── .cvsignore │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ └── Root │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── array.cpp │ │ │ ├── cartesian.cpp │ │ │ ├── cast.cpp │ │ │ ├── cfd.cpp │ │ │ ├── complex-test.cpp │ │ │ ├── convolve.cpp │ │ │ ├── curldiv.cpp │ │ │ ├── deriv.cpp │ │ │ ├── diff.cpp │ │ │ ├── erf.cpp │ │ │ ├── fixed.cpp │ │ │ ├── indirect.cpp │ │ │ ├── io.cpp │ │ │ ├── iter.cpp │ │ │ ├── matmult.cpp │ │ │ ├── nested.cpp │ │ │ ├── numinquire.cpp │ │ │ ├── outer.cpp │ │ │ ├── pauli.cpp │ │ │ ├── pick.cpp │ │ │ ├── polymorph.cpp │ │ │ ├── prettyprint.cpp │ │ │ ├── profile.cpp │ │ │ ├── qcd.cpp │ │ │ ├── rand2.cpp │ │ │ ├── random.cpp │ │ │ ├── rangexpr.cpp │ │ │ ├── reduce.cpp │ │ │ ├── simple.cpp │ │ │ ├── slicing.cpp │ │ │ ├── stencil.cpp │ │ │ ├── stencil2.cpp │ │ │ ├── stencil3.cpp │ │ │ ├── stencil4.f │ │ │ ├── stencilet.cpp │ │ │ ├── storage.cpp │ │ │ ├── tiny.cpp │ │ │ ├── tiny2.cpp │ │ │ ├── tiny3.cpp │ │ │ ├── transform.cpp │ │ │ ├── useret.cpp │ │ │ ├── where.cpp │ │ │ └── whitt.cpp │ │ ├── lib │ │ │ ├── .cvsignore │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ └── Root │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── readme.txt │ │ ├── linalg │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ └── Root │ │ │ ├── V.txt │ │ │ ├── Z.txt │ │ │ ├── gmres.cpp │ │ │ ├── gmres.h │ │ │ └── myIterative.py │ │ ├── m4 │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ └── Root │ │ │ ├── ac_check_blitz.m4 │ │ │ ├── ac_check_cxx_features.m4 │ │ │ ├── ac_compiler_specific_header.m4 │ │ │ ├── ac_compilers_64bits.m4 │ │ │ ├── ac_cxx_bool.m4 │ │ │ ├── ac_cxx_complex_math_in_namespace_std.m4 │ │ │ ├── ac_cxx_const_cast.m4 │ │ │ ├── ac_cxx_default_template_parameters.m4 │ │ │ ├── ac_cxx_dynamic_cast.m4 │ │ │ ├── ac_cxx_enable_debug.m4 │ │ │ ├── ac_cxx_enable_optimize.m4 │ │ │ ├── ac_cxx_enum_computations.m4 │ │ │ ├── ac_cxx_enum_computations_with_cast.m4 │ │ │ ├── ac_cxx_exceptions.m4 │ │ │ ├── ac_cxx_explicit.m4 │ │ │ ├── ac_cxx_explicit_template_function_qualification.m4 │ │ │ ├── ac_cxx_flags_preset.m4 │ │ │ ├── ac_cxx_full_specialization_syntax.m4 │ │ │ ├── ac_cxx_function_nontype_parameters.m4 │ │ │ ├── ac_cxx_general.m4 │ │ │ ├── ac_cxx_have_climits.m4 │ │ │ ├── ac_cxx_have_complex.m4 │ │ │ ├── ac_cxx_have_complex_fcns.m4 │ │ │ ├── ac_cxx_have_complex_math1.m4 │ │ │ ├── ac_cxx_have_complex_math2.m4 │ │ │ ├── ac_cxx_have_cstring.m4 │ │ │ ├── ac_cxx_have_ieee_math.m4 │ │ │ ├── ac_cxx_have_numeric_limits.m4 │ │ │ ├── ac_cxx_have_rusage.m4 │ │ │ ├── ac_cxx_have_std.m4 │ │ │ ├── ac_cxx_have_stl.m4 │ │ │ ├── ac_cxx_have_system_v_math.m4 │ │ │ ├── ac_cxx_have_valarray.m4 │ │ │ ├── ac_cxx_isnan_in_namespace_std.m4 │ │ │ ├── ac_cxx_keywords.m4 │ │ │ ├── ac_cxx_math_absint_in_namespace_std.m4 │ │ │ ├── ac_cxx_math_fn_in_namespace_std.m4 │ │ │ ├── ac_cxx_member_constants.m4 │ │ │ ├── ac_cxx_member_templates.m4 │ │ │ ├── ac_cxx_member_templates_outside_class.m4 │ │ │ ├── ac_cxx_mutable.m4 │ │ │ ├── ac_cxx_namespaces.m4 │ │ │ ├── ac_cxx_nceg_restrict.m4 │ │ │ ├── ac_cxx_nceg_restrict_egcs.m4 │ │ │ ├── ac_cxx_old_for_scoping.m4 │ │ │ ├── ac_cxx_partial_ordering.m4 │ │ │ ├── ac_cxx_partial_specialization.m4 │ │ │ ├── ac_cxx_reinterpret_cast.m4 │ │ │ ├── ac_cxx_rtti.m4 │ │ │ ├── ac_cxx_standard_library.m4 │ │ │ ├── ac_cxx_static_cast.m4 │ │ │ ├── ac_cxx_template_keyword_qualifier.m4 │ │ │ ├── ac_cxx_template_qualified_base_class.m4 │ │ │ ├── ac_cxx_template_qualified_return_type.m4 │ │ │ ├── ac_cxx_template_scoped_argument_matching.m4 │ │ │ ├── ac_cxx_templates.m4 │ │ │ ├── ac_cxx_templates_as_template_arguments.m4 │ │ │ ├── ac_cxx_templates_features.m4 │ │ │ ├── ac_cxx_type_casts.m4 │ │ │ ├── ac_cxx_type_promotion.m4 │ │ │ ├── ac_cxx_typename.m4 │ │ │ ├── ac_cxx_use_numtrait.m4 │ │ │ ├── ac_env.m4 │ │ │ ├── ac_fortran_flags_preset.m4 │ │ │ ├── ac_info.m4 │ │ │ ├── ac_lib_blas.m4 │ │ │ ├── ac_prog_doxygen.m4 │ │ │ ├── ac_send_config.m4 │ │ │ ├── ax_create_pkgconfig_info.m4 │ │ │ ├── ax_dirname.m4 │ │ │ └── ax_prefix_config_h.m4 │ │ ├── manual │ │ │ ├── .cvsignore │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Entries.Log │ │ │ │ ├── Repository │ │ │ │ └── Root │ │ │ ├── Frames.html │ │ │ ├── Index-epilogue.html │ │ │ ├── Index-prologue.html │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── TOCINDEX.html │ │ │ ├── _Index.html │ │ │ ├── arrays-ctors.yo │ │ │ ├── arrays-debug.yo │ │ │ ├── arrays-expr.yo │ │ │ ├── arrays-globals.yo │ │ │ ├── arrays-indirect.yo │ │ │ ├── arrays-intro.yo │ │ │ ├── arrays-io.yo │ │ │ ├── arrays-members.yo │ │ │ ├── arrays-multi.yo │ │ │ ├── arrays-slicing.yo │ │ │ ├── arrays-stencils.yo │ │ │ ├── arrays-storage.yo │ │ │ ├── arrays-types.yo │ │ │ ├── arrays-usertype.yo │ │ │ ├── blitz.gif │ │ │ ├── blitz.html │ │ │ ├── blitz.ps │ │ │ ├── blitz.yo │ │ │ ├── blitz01.html │ │ │ ├── blitz02.html │ │ │ ├── blitz03.html │ │ │ ├── blitz04.html │ │ │ ├── blitz05.html │ │ │ ├── blitz06.html │ │ │ ├── blitz07.html │ │ │ ├── blitz08.html │ │ │ ├── blitz09.html │ │ │ ├── blitz10.html │ │ │ ├── blitzmacros.yo │ │ │ ├── blitztiny.jpg │ │ │ ├── classref.html │ │ │ ├── compiling.yo │ │ │ ├── constants.yo │ │ │ ├── download.yo │ │ │ ├── examples │ │ │ │ ├── .cvsignore │ │ │ │ ├── CVS │ │ │ │ │ ├── Entries │ │ │ │ │ ├── Repository │ │ │ │ │ └── Root │ │ │ │ ├── Makefile.am │ │ │ │ ├── cast.cpp │ │ │ │ ├── debug.cpp │ │ │ │ ├── dump.cpp │ │ │ │ ├── fixed.cpp │ │ │ │ ├── outer.cpp │ │ │ │ ├── outer.log │ │ │ │ ├── output.cpp │ │ │ │ ├── output.log │ │ │ │ ├── range.cpp │ │ │ │ ├── simple.cpp │ │ │ │ ├── simple.log │ │ │ │ ├── slicing.cpp │ │ │ │ ├── storage.cpp │ │ │ │ ├── storage.log │ │ │ │ ├── strideslice.cpp │ │ │ │ └── xor.cpp │ │ │ ├── faq.yo │ │ │ ├── help.yo │ │ │ ├── index.html │ │ │ ├── index.m4 │ │ │ ├── indirect.eps │ │ │ ├── indirect.fig │ │ │ ├── indirect.gif │ │ │ ├── install.yo │ │ │ ├── legal.yo │ │ │ ├── makeHTMLIndex.cpp │ │ │ ├── makedatestring │ │ │ ├── makeindex │ │ │ ├── numinquire.yo │ │ │ ├── parallel.yo │ │ │ ├── platforms.yo │ │ │ ├── preview │ │ │ ├── proc2e.sty │ │ │ ├── random.yo │ │ │ ├── range.html │ │ │ ├── sinsoid.eps │ │ │ ├── sinsoid.gif │ │ │ ├── slice.eps │ │ │ ├── slice.fig │ │ │ ├── slice.gif │ │ │ ├── stencils │ │ │ │ ├── .cvsignore │ │ │ │ ├── CVS │ │ │ │ │ ├── Entries │ │ │ │ │ ├── Repository │ │ │ │ │ └── Root │ │ │ │ ├── Laplacian2D.yo │ │ │ │ ├── Laplacian2D4.yo │ │ │ │ ├── Makefile.am │ │ │ │ ├── backward11.yo │ │ │ │ ├── backward12.yo │ │ │ │ ├── backward21.yo │ │ │ │ ├── backward22.yo │ │ │ │ ├── backward31.yo │ │ │ │ ├── backward32.yo │ │ │ │ ├── backward41.yo │ │ │ │ ├── backward42.yo │ │ │ │ ├── central12.yo │ │ │ │ ├── central14.yo │ │ │ │ ├── central22.yo │ │ │ │ ├── central24.yo │ │ │ │ ├── central32.yo │ │ │ │ ├── central34.yo │ │ │ │ ├── central42.yo │ │ │ │ ├── central44.yo │ │ │ │ ├── dump-stencil.cpp │ │ │ │ ├── dump1D │ │ │ │ ├── dumpdiffs │ │ │ │ ├── dumpst │ │ │ │ ├── forward11.yo │ │ │ │ ├── forward12.yo │ │ │ │ ├── forward21.yo │ │ │ │ ├── forward22.yo │ │ │ │ ├── forward31.yo │ │ │ │ ├── forward32.yo │ │ │ │ ├── forward41.yo │ │ │ │ └── forward42.yo │ │ │ ├── strideslice.eps │ │ │ ├── strideslice.fig │ │ │ ├── strideslice.gif │ │ │ ├── tau.yo │ │ │ ├── tensor1.eps │ │ │ ├── tensor1.fig │ │ │ ├── tensor1.gif │ │ │ ├── tinymatrix.yo │ │ │ ├── tinyvector.yo │ │ │ ├── tuning.yo │ │ │ ├── update │ │ │ └── vector.html │ │ ├── random │ │ │ ├── .cvsignore │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ └── Root │ │ │ ├── F.h │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── beta.h │ │ │ ├── chisquare.h │ │ │ ├── default.h │ │ │ ├── discrete-uniform.h │ │ │ ├── exponential.h │ │ │ ├── gamma.h │ │ │ ├── mt.h │ │ │ ├── mtparam.cc │ │ │ ├── normal.h │ │ │ └── uniform.h │ │ ├── src │ │ │ ├── .cvsignore │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ └── Root │ │ │ └── globals.cpp │ │ └── testsuite │ │ │ ├── .cvsignore │ │ │ ├── Adnene-Ben-Abdallah-1.cpp │ │ │ ├── Adnene-Ben-Abdallah-2.cpp │ │ │ ├── CVS │ │ │ ├── Entries │ │ │ ├── Repository │ │ │ └── Root │ │ │ ├── Josef-Wagenhuber.cpp │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Olaf-Ronneberger-1.cpp │ │ │ ├── Ulisses-Mello-1.cpp │ │ │ ├── arrayresize.cpp │ │ │ ├── chris-jeffery-1.cpp │ │ │ ├── chris-jeffery-2.cpp │ │ │ ├── chris-jeffery-3.cpp │ │ │ ├── complex-test.cpp │ │ │ ├── constarray.cpp │ │ │ ├── contiguous.cpp │ │ │ ├── copy.cpp │ │ │ ├── ctors.cpp │ │ │ ├── derrick-bass-1.cpp │ │ │ ├── derrick-bass-3.cpp │ │ │ ├── exprctor.cpp │ │ │ ├── extract.cpp │ │ │ ├── free.cpp │ │ │ ├── gary-huber-1.cpp │ │ │ ├── initialize.cpp │ │ │ ├── interlace.cpp │ │ │ ├── iter.cpp │ │ │ ├── loop1.cpp │ │ │ ├── matthias-troyer-1.cpp │ │ │ ├── matthias-troyer-2.cpp │ │ │ ├── mattias-lindstroem-1.cpp │ │ │ ├── minmax.cpp │ │ │ ├── minsumpow.cpp │ │ │ ├── module1.cpp │ │ │ ├── module2.cpp │ │ │ ├── newet.cpp │ │ │ ├── patrik-jonsson-1.cpp │ │ │ ├── peter-bienstman-1.cpp │ │ │ ├── peter-bienstman-2.cpp │ │ │ ├── peter-bienstman-3.cpp │ │ │ ├── peter-bienstman-4.cpp │ │ │ ├── peter-bienstman-5.cpp │ │ │ ├── peter-nordlund-1.cpp │ │ │ ├── peter-nordlund-2.cpp │ │ │ ├── peter-nordlund-3.cpp │ │ │ ├── promote.cpp │ │ │ ├── qcd.cpp │ │ │ ├── reduce.cpp │ │ │ ├── reindex.cpp │ │ │ ├── reverse.cpp │ │ │ ├── shape.cpp │ │ │ ├── shapecheck.cpp │ │ │ ├── storage.cpp │ │ │ ├── stub.cpp │ │ │ ├── testsuite.h │ │ │ ├── theodore-papadopoulo-1.cpp │ │ │ ├── tinymat.cpp │ │ │ ├── tinyvec.cpp │ │ │ ├── transpose.cpp │ │ │ ├── troyer-genilloud.cpp │ │ │ ├── wei-ku-1.cpp │ │ │ ├── where.cpp │ │ │ └── zeek-1.cpp │ ├── fftw-3.2.2 │ │ ├── AUTHORS │ │ ├── CONVENTIONS │ │ ├── COPYING │ │ ├── COPYRIGHT │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── README.Cell │ │ ├── TODO │ │ ├── aclocal.m4 │ │ ├── api │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── api.h │ │ │ ├── apiplan.c │ │ │ ├── configure.c │ │ │ ├── execute-dft-c2r.c │ │ │ ├── execute-dft-r2c.c │ │ │ ├── execute-dft.c │ │ │ ├── execute-r2r.c │ │ │ ├── execute-split-dft-c2r.c │ │ │ ├── execute-split-dft-r2c.c │ │ │ ├── execute-split-dft.c │ │ │ ├── execute.c │ │ │ ├── export-wisdom-to-file.c │ │ │ ├── export-wisdom-to-string.c │ │ │ ├── export-wisdom.c │ │ │ ├── f77api.c │ │ │ ├── f77funcs.h │ │ │ ├── fftw3.f │ │ │ ├── fftw3.h │ │ │ ├── flops.c │ │ │ ├── forget-wisdom.c │ │ │ ├── guru.h │ │ │ ├── guru64.h │ │ │ ├── import-system-wisdom.c │ │ │ ├── import-wisdom-from-file.c │ │ │ ├── import-wisdom-from-string.c │ │ │ ├── import-wisdom.c │ │ │ ├── malloc.c │ │ │ ├── map-r2r-kind.c │ │ │ ├── mapflags.c │ │ │ ├── mkprinter-file.c │ │ │ ├── mktensor-iodims.c │ │ │ ├── mktensor-iodims.h │ │ │ ├── mktensor-iodims64.c │ │ │ ├── mktensor-rowmajor.c │ │ │ ├── plan-dft-1d.c │ │ │ ├── plan-dft-2d.c │ │ │ ├── plan-dft-3d.c │ │ │ ├── plan-dft-c2r-1d.c │ │ │ ├── plan-dft-c2r-2d.c │ │ │ ├── plan-dft-c2r-3d.c │ │ │ ├── plan-dft-c2r.c │ │ │ ├── plan-dft-r2c-1d.c │ │ │ ├── plan-dft-r2c-2d.c │ │ │ ├── plan-dft-r2c-3d.c │ │ │ ├── plan-dft-r2c.c │ │ │ ├── plan-dft.c │ │ │ ├── plan-guru-dft-c2r.c │ │ │ ├── plan-guru-dft-c2r.h │ │ │ ├── plan-guru-dft-r2c.c │ │ │ ├── plan-guru-dft-r2c.h │ │ │ ├── plan-guru-dft.c │ │ │ ├── plan-guru-dft.h │ │ │ ├── plan-guru-r2r.c │ │ │ ├── plan-guru-r2r.h │ │ │ ├── plan-guru-split-dft-c2r.c │ │ │ ├── plan-guru-split-dft-c2r.h │ │ │ ├── plan-guru-split-dft-r2c.c │ │ │ ├── plan-guru-split-dft-r2c.h │ │ │ ├── plan-guru-split-dft.c │ │ │ ├── plan-guru-split-dft.h │ │ │ ├── plan-guru64-dft-c2r.c │ │ │ ├── plan-guru64-dft-r2c.c │ │ │ ├── plan-guru64-dft.c │ │ │ ├── plan-guru64-r2r.c │ │ │ ├── plan-guru64-split-dft-c2r.c │ │ │ ├── plan-guru64-split-dft-r2c.c │ │ │ ├── plan-guru64-split-dft.c │ │ │ ├── plan-many-dft-c2r.c │ │ │ ├── plan-many-dft-r2c.c │ │ │ ├── plan-many-dft.c │ │ │ ├── plan-many-r2r.c │ │ │ ├── plan-r2r-1d.c │ │ │ ├── plan-r2r-2d.c │ │ │ ├── plan-r2r-3d.c │ │ │ ├── plan-r2r.c │ │ │ ├── print-plan.c │ │ │ ├── rdft2-pad.c │ │ │ ├── the-planner.c │ │ │ ├── version.c │ │ │ └── x77.h │ │ ├── bootstrap.sh │ │ ├── cell │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── cell.c │ │ │ ├── conf.c │ │ │ ├── copy.c │ │ │ ├── dft-direct-cell.c │ │ │ ├── fftw-cell.h │ │ │ ├── plans-double.c │ │ │ ├── plans-single.c │ │ │ ├── spu │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── alloc.spuc │ │ │ │ ├── copy.spuc │ │ │ │ ├── dft.spuc │ │ │ │ ├── dma.spuc │ │ │ │ ├── execute.spuc │ │ │ │ ├── fftw-spu.h │ │ │ │ ├── main.spuc │ │ │ │ ├── planner.spuc │ │ │ │ ├── spu-double.h │ │ │ │ ├── spu-single.h │ │ │ │ ├── spu_n1fv_11.spuc │ │ │ │ ├── spu_n1fv_13.spuc │ │ │ │ ├── spu_n1fv_15.spuc │ │ │ │ ├── spu_n1fv_3.spuc │ │ │ │ ├── spu_n1fv_5.spuc │ │ │ │ ├── spu_n1fv_7.spuc │ │ │ │ ├── spu_n1fv_9.spuc │ │ │ │ ├── spu_n2fv_10.spuc │ │ │ │ ├── spu_n2fv_12.spuc │ │ │ │ ├── spu_n2fv_14.spuc │ │ │ │ ├── spu_n2fv_16.spuc │ │ │ │ ├── spu_n2fv_2.spuc │ │ │ │ ├── spu_n2fv_32.spuc │ │ │ │ ├── spu_n2fv_4.spuc │ │ │ │ ├── spu_n2fv_6.spuc │ │ │ │ ├── spu_n2fv_8.spuc │ │ │ │ ├── spu_t1fv_10.spuc │ │ │ │ ├── spu_t1fv_12.spuc │ │ │ │ ├── spu_t1fv_15.spuc │ │ │ │ ├── spu_t1fv_16.spuc │ │ │ │ ├── spu_t1fv_2.spuc │ │ │ │ ├── spu_t1fv_3.spuc │ │ │ │ ├── spu_t1fv_32.spuc │ │ │ │ ├── spu_t1fv_4.spuc │ │ │ │ ├── spu_t1fv_5.spuc │ │ │ │ ├── spu_t1fv_6.spuc │ │ │ │ ├── spu_t1fv_7.spuc │ │ │ │ ├── spu_t1fv_8.spuc │ │ │ │ ├── spu_t1fv_9.spuc │ │ │ │ └── transpose.spuc │ │ │ ├── spufftw-embed.S │ │ │ └── transpose.c │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── depcomp │ │ ├── dft │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── bluestein.c │ │ │ ├── buffered.c │ │ │ ├── codelet-dft.h │ │ │ ├── conf.c │ │ │ ├── ct.c │ │ │ ├── ct.h │ │ │ ├── dft.h │ │ │ ├── dftw-direct.c │ │ │ ├── dftw-directsq.c │ │ │ ├── dftw-generic.c │ │ │ ├── dftw-genericbuf.c │ │ │ ├── direct.c │ │ │ ├── generic.c │ │ │ ├── indirect-transpose.c │ │ │ ├── indirect.c │ │ │ ├── kdft-dif.c │ │ │ ├── kdft-difsq.c │ │ │ ├── kdft-dit.c │ │ │ ├── kdft.c │ │ │ ├── nop.c │ │ │ ├── plan.c │ │ │ ├── problem.c │ │ │ ├── rader.c │ │ │ ├── rank-geq2.c │ │ │ ├── scalar │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── codelets │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── codlist.c │ │ │ │ │ ├── n1_10.c │ │ │ │ │ ├── n1_11.c │ │ │ │ │ ├── n1_12.c │ │ │ │ │ ├── n1_13.c │ │ │ │ │ ├── n1_14.c │ │ │ │ │ ├── n1_15.c │ │ │ │ │ ├── n1_16.c │ │ │ │ │ ├── n1_2.c │ │ │ │ │ ├── n1_20.c │ │ │ │ │ ├── n1_25.c │ │ │ │ │ ├── n1_3.c │ │ │ │ │ ├── n1_32.c │ │ │ │ │ ├── n1_4.c │ │ │ │ │ ├── n1_5.c │ │ │ │ │ ├── n1_6.c │ │ │ │ │ ├── n1_64.c │ │ │ │ │ ├── n1_7.c │ │ │ │ │ ├── n1_8.c │ │ │ │ │ ├── n1_9.c │ │ │ │ │ ├── q1_2.c │ │ │ │ │ ├── q1_3.c │ │ │ │ │ ├── q1_4.c │ │ │ │ │ ├── q1_5.c │ │ │ │ │ ├── q1_6.c │ │ │ │ │ ├── q1_8.c │ │ │ │ │ ├── t1_10.c │ │ │ │ │ ├── t1_12.c │ │ │ │ │ ├── t1_15.c │ │ │ │ │ ├── t1_16.c │ │ │ │ │ ├── t1_2.c │ │ │ │ │ ├── t1_20.c │ │ │ │ │ ├── t1_25.c │ │ │ │ │ ├── t1_3.c │ │ │ │ │ ├── t1_32.c │ │ │ │ │ ├── t1_4.c │ │ │ │ │ ├── t1_5.c │ │ │ │ │ ├── t1_6.c │ │ │ │ │ ├── t1_64.c │ │ │ │ │ ├── t1_7.c │ │ │ │ │ ├── t1_8.c │ │ │ │ │ ├── t1_9.c │ │ │ │ │ ├── t2_10.c │ │ │ │ │ ├── t2_16.c │ │ │ │ │ ├── t2_20.c │ │ │ │ │ ├── t2_25.c │ │ │ │ │ ├── t2_32.c │ │ │ │ │ ├── t2_4.c │ │ │ │ │ ├── t2_5.c │ │ │ │ │ ├── t2_64.c │ │ │ │ │ └── t2_8.c │ │ │ │ ├── f.h │ │ │ │ ├── n.c │ │ │ │ ├── n.h │ │ │ │ ├── q.h │ │ │ │ ├── t.c │ │ │ │ └── t.h │ │ │ ├── simd │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── codelets │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── codlist.c │ │ │ │ │ ├── n1bv_10.c │ │ │ │ │ ├── n1bv_11.c │ │ │ │ │ ├── n1bv_12.c │ │ │ │ │ ├── n1bv_128.c │ │ │ │ │ ├── n1bv_13.c │ │ │ │ │ ├── n1bv_14.c │ │ │ │ │ ├── n1bv_15.c │ │ │ │ │ ├── n1bv_16.c │ │ │ │ │ ├── n1bv_2.c │ │ │ │ │ ├── n1bv_20.c │ │ │ │ │ ├── n1bv_25.c │ │ │ │ │ ├── n1bv_3.c │ │ │ │ │ ├── n1bv_32.c │ │ │ │ │ ├── n1bv_4.c │ │ │ │ │ ├── n1bv_5.c │ │ │ │ │ ├── n1bv_6.c │ │ │ │ │ ├── n1bv_64.c │ │ │ │ │ ├── n1bv_7.c │ │ │ │ │ ├── n1bv_8.c │ │ │ │ │ ├── n1bv_9.c │ │ │ │ │ ├── n1fv_10.c │ │ │ │ │ ├── n1fv_11.c │ │ │ │ │ ├── n1fv_12.c │ │ │ │ │ ├── n1fv_128.c │ │ │ │ │ ├── n1fv_13.c │ │ │ │ │ ├── n1fv_14.c │ │ │ │ │ ├── n1fv_15.c │ │ │ │ │ ├── n1fv_16.c │ │ │ │ │ ├── n1fv_2.c │ │ │ │ │ ├── n1fv_20.c │ │ │ │ │ ├── n1fv_25.c │ │ │ │ │ ├── n1fv_3.c │ │ │ │ │ ├── n1fv_32.c │ │ │ │ │ ├── n1fv_4.c │ │ │ │ │ ├── n1fv_5.c │ │ │ │ │ ├── n1fv_6.c │ │ │ │ │ ├── n1fv_64.c │ │ │ │ │ ├── n1fv_7.c │ │ │ │ │ ├── n1fv_8.c │ │ │ │ │ ├── n1fv_9.c │ │ │ │ │ ├── n2bv_10.c │ │ │ │ │ ├── n2bv_12.c │ │ │ │ │ ├── n2bv_14.c │ │ │ │ │ ├── n2bv_16.c │ │ │ │ │ ├── n2bv_2.c │ │ │ │ │ ├── n2bv_20.c │ │ │ │ │ ├── n2bv_32.c │ │ │ │ │ ├── n2bv_4.c │ │ │ │ │ ├── n2bv_6.c │ │ │ │ │ ├── n2bv_64.c │ │ │ │ │ ├── n2bv_8.c │ │ │ │ │ ├── n2fv_10.c │ │ │ │ │ ├── n2fv_12.c │ │ │ │ │ ├── n2fv_14.c │ │ │ │ │ ├── n2fv_16.c │ │ │ │ │ ├── n2fv_2.c │ │ │ │ │ ├── n2fv_20.c │ │ │ │ │ ├── n2fv_32.c │ │ │ │ │ ├── n2fv_4.c │ │ │ │ │ ├── n2fv_6.c │ │ │ │ │ ├── n2fv_64.c │ │ │ │ │ ├── n2fv_8.c │ │ │ │ │ ├── n2sv_16.c │ │ │ │ │ ├── n2sv_32.c │ │ │ │ │ ├── n2sv_4.c │ │ │ │ │ ├── n2sv_64.c │ │ │ │ │ ├── n2sv_8.c │ │ │ │ │ ├── q1bv_2.c │ │ │ │ │ ├── q1bv_4.c │ │ │ │ │ ├── q1bv_5.c │ │ │ │ │ ├── q1bv_8.c │ │ │ │ │ ├── q1fv_2.c │ │ │ │ │ ├── q1fv_4.c │ │ │ │ │ ├── q1fv_5.c │ │ │ │ │ ├── q1fv_8.c │ │ │ │ │ ├── t1buv_10.c │ │ │ │ │ ├── t1buv_2.c │ │ │ │ │ ├── t1buv_3.c │ │ │ │ │ ├── t1buv_4.c │ │ │ │ │ ├── t1buv_5.c │ │ │ │ │ ├── t1buv_6.c │ │ │ │ │ ├── t1buv_7.c │ │ │ │ │ ├── t1buv_8.c │ │ │ │ │ ├── t1buv_9.c │ │ │ │ │ ├── t1bv_10.c │ │ │ │ │ ├── t1bv_12.c │ │ │ │ │ ├── t1bv_15.c │ │ │ │ │ ├── t1bv_16.c │ │ │ │ │ ├── t1bv_2.c │ │ │ │ │ ├── t1bv_20.c │ │ │ │ │ ├── t1bv_25.c │ │ │ │ │ ├── t1bv_3.c │ │ │ │ │ ├── t1bv_32.c │ │ │ │ │ ├── t1bv_4.c │ │ │ │ │ ├── t1bv_5.c │ │ │ │ │ ├── t1bv_6.c │ │ │ │ │ ├── t1bv_64.c │ │ │ │ │ ├── t1bv_7.c │ │ │ │ │ ├── t1bv_8.c │ │ │ │ │ ├── t1bv_9.c │ │ │ │ │ ├── t1fuv_10.c │ │ │ │ │ ├── t1fuv_2.c │ │ │ │ │ ├── t1fuv_3.c │ │ │ │ │ ├── t1fuv_4.c │ │ │ │ │ ├── t1fuv_5.c │ │ │ │ │ ├── t1fuv_6.c │ │ │ │ │ ├── t1fuv_7.c │ │ │ │ │ ├── t1fuv_8.c │ │ │ │ │ ├── t1fuv_9.c │ │ │ │ │ ├── t1fv_10.c │ │ │ │ │ ├── t1fv_12.c │ │ │ │ │ ├── t1fv_15.c │ │ │ │ │ ├── t1fv_16.c │ │ │ │ │ ├── t1fv_2.c │ │ │ │ │ ├── t1fv_20.c │ │ │ │ │ ├── t1fv_25.c │ │ │ │ │ ├── t1fv_3.c │ │ │ │ │ ├── t1fv_32.c │ │ │ │ │ ├── t1fv_4.c │ │ │ │ │ ├── t1fv_5.c │ │ │ │ │ ├── t1fv_6.c │ │ │ │ │ ├── t1fv_64.c │ │ │ │ │ ├── t1fv_7.c │ │ │ │ │ ├── t1fv_8.c │ │ │ │ │ ├── t1fv_9.c │ │ │ │ │ ├── t1sv_16.c │ │ │ │ │ ├── t1sv_2.c │ │ │ │ │ ├── t1sv_32.c │ │ │ │ │ ├── t1sv_4.c │ │ │ │ │ ├── t1sv_8.c │ │ │ │ │ ├── t2bv_10.c │ │ │ │ │ ├── t2bv_16.c │ │ │ │ │ ├── t2bv_2.c │ │ │ │ │ ├── t2bv_20.c │ │ │ │ │ ├── t2bv_25.c │ │ │ │ │ ├── t2bv_32.c │ │ │ │ │ ├── t2bv_4.c │ │ │ │ │ ├── t2bv_5.c │ │ │ │ │ ├── t2bv_64.c │ │ │ │ │ ├── t2bv_8.c │ │ │ │ │ ├── t2fv_10.c │ │ │ │ │ ├── t2fv_16.c │ │ │ │ │ ├── t2fv_2.c │ │ │ │ │ ├── t2fv_20.c │ │ │ │ │ ├── t2fv_25.c │ │ │ │ │ ├── t2fv_32.c │ │ │ │ │ ├── t2fv_4.c │ │ │ │ │ ├── t2fv_5.c │ │ │ │ │ ├── t2fv_64.c │ │ │ │ │ ├── t2fv_8.c │ │ │ │ │ ├── t2sv_16.c │ │ │ │ │ ├── t2sv_32.c │ │ │ │ │ ├── t2sv_4.c │ │ │ │ │ ├── t2sv_8.c │ │ │ │ │ ├── t3bv_10.c │ │ │ │ │ ├── t3bv_16.c │ │ │ │ │ ├── t3bv_20.c │ │ │ │ │ ├── t3bv_25.c │ │ │ │ │ ├── t3bv_32.c │ │ │ │ │ ├── t3bv_4.c │ │ │ │ │ ├── t3bv_5.c │ │ │ │ │ ├── t3bv_8.c │ │ │ │ │ ├── t3fv_10.c │ │ │ │ │ ├── t3fv_16.c │ │ │ │ │ ├── t3fv_20.c │ │ │ │ │ ├── t3fv_25.c │ │ │ │ │ ├── t3fv_32.c │ │ │ │ │ ├── t3fv_4.c │ │ │ │ │ ├── t3fv_5.c │ │ │ │ │ └── t3fv_8.c │ │ │ │ ├── n1b.c │ │ │ │ ├── n1b.h │ │ │ │ ├── n1f.c │ │ │ │ ├── n1f.h │ │ │ │ ├── n2b.c │ │ │ │ ├── n2b.h │ │ │ │ ├── n2f.c │ │ │ │ ├── n2f.h │ │ │ │ ├── n2s.c │ │ │ │ ├── n2s.h │ │ │ │ ├── q1b.c │ │ │ │ ├── q1b.h │ │ │ │ ├── q1f.c │ │ │ │ ├── q1f.h │ │ │ │ ├── t.c │ │ │ │ ├── t1b.h │ │ │ │ ├── t1bu.h │ │ │ │ ├── t1f.h │ │ │ │ ├── t1fu.h │ │ │ │ ├── t2b.h │ │ │ │ ├── t2f.h │ │ │ │ ├── t3b.h │ │ │ │ ├── t3f.h │ │ │ │ ├── ts.c │ │ │ │ └── ts.h │ │ │ ├── solve.c │ │ │ ├── vrank-geq1.c │ │ │ └── zero.c │ │ ├── doc │ │ │ ├── FAQ │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── bfnnconv.pl │ │ │ │ ├── fftw-faq.bfnn │ │ │ │ ├── html.refs │ │ │ │ ├── m-ascii.pl │ │ │ │ ├── m-html.pl │ │ │ │ ├── m-info.pl │ │ │ │ ├── m-lout.pl │ │ │ │ └── m-post.pl │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── equation-dft.png │ │ │ ├── equation-dht.png │ │ │ ├── equation-idft.png │ │ │ ├── equation-redft00.png │ │ │ ├── equation-redft01.png │ │ │ ├── equation-redft10.png │ │ │ ├── equation-redft11.png │ │ │ ├── equation-rodft00.png │ │ │ ├── equation-rodft01.png │ │ │ ├── equation-rodft10.png │ │ │ ├── equation-rodft11.png │ │ │ ├── f77_wisdom.f │ │ │ ├── fftw3.info │ │ │ ├── html │ │ │ │ ├── 1d-Discrete-Hartley-Transforms-_0028DHTs_0029.html │ │ │ │ ├── 1d-Real_002deven-DFTs-_0028DCTs_0029.html │ │ │ │ ├── 1d-Real_002dodd-DFTs-_0028DSTs_0029.html │ │ │ │ ├── 64_002dbit-Guru-Interface.html │ │ │ │ ├── Acknowledgments.html │ │ │ │ ├── Advanced-Complex-DFTs.html │ │ │ │ ├── Advanced-Interface.html │ │ │ │ ├── Advanced-Real_002ddata-DFTs.html │ │ │ │ ├── Advanced-Real_002dto_002dreal-Transforms.html │ │ │ │ ├── Basic-Interface.html │ │ │ │ ├── Calling-FFTW-from-Fortran.html │ │ │ │ ├── Caveats-in-Using-Wisdom.html │ │ │ │ ├── Cell-Caveats.html │ │ │ │ ├── Cell-Installation.html │ │ │ │ ├── Column_002dmajor-Format.html │ │ │ │ ├── Complex-DFTs.html │ │ │ │ ├── Complex-Multi_002dDimensional-DFTs.html │ │ │ │ ├── Complex-One_002dDimensional-DFTs.html │ │ │ │ ├── Complex-numbers.html │ │ │ │ ├── Concept-Index.html │ │ │ │ ├── Cycle-Counters.html │ │ │ │ ├── Data-Alignment.html │ │ │ │ ├── Data-Types-and-Files.html │ │ │ │ ├── Dynamic-Arrays-in-C.html │ │ │ │ ├── Dynamic-Arrays-in-C_002dThe-Wrong-Way.html │ │ │ │ ├── FFTW-Accuracy-on-Cell.html │ │ │ │ ├── FFTW-Constants-in-Fortran.html │ │ │ │ ├── FFTW-Execution-in-Fortran.html │ │ │ │ ├── FFTW-Reference.html │ │ │ │ ├── FFTW-on-the-Cell-Processor.html │ │ │ │ ├── Fixed_002dsize-Arrays-in-C.html │ │ │ │ ├── Forgetting-Wisdom.html │ │ │ │ ├── Fortran-Examples.html │ │ │ │ ├── Fortran_002dinterface-routines.html │ │ │ │ ├── Generating-your-own-code.html │ │ │ │ ├── Guru-Complex-DFTs.html │ │ │ │ ├── Guru-Interface.html │ │ │ │ ├── Guru-Real_002ddata-DFTs.html │ │ │ │ ├── Guru-Real_002dto_002dreal-Transforms.html │ │ │ │ ├── Guru-vector-and-transform-sizes.html │ │ │ │ ├── How-Many-Threads-to-Use_003f.html │ │ │ │ ├── Installation-and-Customization.html │ │ │ │ ├── Installation-and-Supported-Hardware_002fSoftware.html │ │ │ │ ├── Installation-on-Unix.html │ │ │ │ ├── Installation-on-non_002dUnix-systems.html │ │ │ │ ├── Interleaved-and-split-arrays.html │ │ │ │ ├── Introduction.html │ │ │ │ ├── Library-Index.html │ │ │ │ ├── License-and-Copyright.html │ │ │ │ ├── Memory-Allocation.html │ │ │ │ ├── More-DFTs-of-Real-Data.html │ │ │ │ ├── Multi_002dDimensional-DFTs-of-Real-Data.html │ │ │ │ ├── Multi_002ddimensional-Array-Format.html │ │ │ │ ├── Multi_002ddimensional-Transforms.html │ │ │ │ ├── Multi_002dthreaded-FFTW.html │ │ │ │ ├── New_002darray-Execute-Functions.html │ │ │ │ ├── One_002dDimensional-DFTs-of-Real-Data.html │ │ │ │ ├── Other-Important-Topics.html │ │ │ │ ├── Planner-Flags.html │ │ │ │ ├── Precision.html │ │ │ │ ├── Real-even_002fodd-DFTs-_0028cosine_002fsine-transforms_0029.html │ │ │ │ ├── Real_002ddata-DFT-Array-Format.html │ │ │ │ ├── Real_002ddata-DFTs.html │ │ │ │ ├── Real_002dto_002dReal-Transform-Kinds.html │ │ │ │ ├── Real_002dto_002dReal-Transforms.html │ │ │ │ ├── Row_002dmajor-Format.html │ │ │ │ ├── SIMD-alignment-and-fftw_005fmalloc.html │ │ │ │ ├── Stack-alignment-on-x86.html │ │ │ │ ├── The-1d-Discrete-Fourier-Transform-_0028DFT_0029.html │ │ │ │ ├── The-1d-Real_002ddata-DFT.html │ │ │ │ ├── The-Discrete-Hartley-Transform.html │ │ │ │ ├── The-Halfcomplex_002dformat-DFT.html │ │ │ │ ├── Thread-safety.html │ │ │ │ ├── Tutorial.html │ │ │ │ ├── Upgrading-from-FFTW-version-2.html │ │ │ │ ├── Usage-of-Multi_002dthreaded-FFTW.html │ │ │ │ ├── Using-Plans.html │ │ │ │ ├── What-FFTW-Really-Computes.html │ │ │ │ ├── Wisdom-Export.html │ │ │ │ ├── Wisdom-Import.html │ │ │ │ ├── Wisdom-Utilities.html │ │ │ │ ├── Wisdom-of-Fortran_003f.html │ │ │ │ ├── Wisdom.html │ │ │ │ ├── Words-of-Wisdom_002dSaving-Plans.html │ │ │ │ ├── equation-dft.png │ │ │ │ ├── equation-dht.png │ │ │ │ ├── equation-idft.png │ │ │ │ ├── equation-redft00.png │ │ │ │ ├── equation-redft01.png │ │ │ │ ├── equation-redft10.png │ │ │ │ ├── equation-redft11.png │ │ │ │ ├── equation-rodft00.png │ │ │ │ ├── equation-rodft01.png │ │ │ │ ├── equation-rodft10.png │ │ │ │ ├── equation-rodft11.png │ │ │ │ ├── index.html │ │ │ │ └── rfftwnd.png │ │ │ ├── mdate-sh │ │ │ ├── rfftwnd.eps │ │ │ ├── rfftwnd.fig │ │ │ ├── stamp-vti │ │ │ └── texinfo.tex │ │ ├── fftw.pc.in │ │ ├── genfft │ │ │ ├── .depend │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── algsimp.ml │ │ │ ├── algsimp.mli │ │ │ ├── annotate.ml │ │ │ ├── annotate.mli │ │ │ ├── assoctable.ml │ │ │ ├── assoctable.mli │ │ │ ├── c.ml │ │ │ ├── c.mli │ │ │ ├── complex.ml │ │ │ ├── complex.mli │ │ │ ├── conv.ml │ │ │ ├── conv.mli │ │ │ ├── dag.ml │ │ │ ├── dag.mli │ │ │ ├── expr.ml │ │ │ ├── expr.mli │ │ │ ├── fft.ml │ │ │ ├── fft.mli │ │ │ ├── gen_hc2c.ml │ │ │ ├── gen_hc2cdft.ml │ │ │ ├── gen_hc2cdft_c.ml │ │ │ ├── gen_hc2hc.ml │ │ │ ├── gen_mdct.ml │ │ │ ├── gen_notw.ml │ │ │ ├── gen_notw_c.ml │ │ │ ├── gen_r2cb.ml │ │ │ ├── gen_r2cf.ml │ │ │ ├── gen_r2r.ml │ │ │ ├── gen_twiddle.ml │ │ │ ├── gen_twiddle_c.ml │ │ │ ├── gen_twidsq.ml │ │ │ ├── gen_twidsq_c.ml │ │ │ ├── genutil.ml │ │ │ ├── littlesimp.ml │ │ │ ├── littlesimp.mli │ │ │ ├── magic.ml │ │ │ ├── monads.ml │ │ │ ├── number.ml │ │ │ ├── number.mli │ │ │ ├── oracle.ml │ │ │ ├── oracle.mli │ │ │ ├── schedule.ml │ │ │ ├── schedule.mli │ │ │ ├── simd.ml │ │ │ ├── simd.mli │ │ │ ├── simdmagic.ml │ │ │ ├── to_alist.ml │ │ │ ├── to_alist.mli │ │ │ ├── trig.ml │ │ │ ├── trig.mli │ │ │ ├── twiddle.ml │ │ │ ├── twiddle.mli │ │ │ ├── unique.ml │ │ │ ├── unique.mli │ │ │ ├── util.ml │ │ │ ├── util.mli │ │ │ ├── variable.ml │ │ │ └── variable.mli │ │ ├── install-sh │ │ ├── kernel │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── align.c │ │ │ ├── alloc.c │ │ │ ├── assert.c │ │ │ ├── awake.c │ │ │ ├── buffered.c │ │ │ ├── cpy1d.c │ │ │ ├── cpy2d-pair.c │ │ │ ├── cpy2d.c │ │ │ ├── ct.c │ │ │ ├── cycle.h │ │ │ ├── debug.c │ │ │ ├── extract-reim.c │ │ │ ├── hash.c │ │ │ ├── iabs.c │ │ │ ├── ifftw.h │ │ │ ├── kalloc.c │ │ │ ├── md5-1.c │ │ │ ├── md5.c │ │ │ ├── minmax.c │ │ │ ├── ops.c │ │ │ ├── pickdim.c │ │ │ ├── plan.c │ │ │ ├── planner.c │ │ │ ├── primes.c │ │ │ ├── print.c │ │ │ ├── problem.c │ │ │ ├── rader.c │ │ │ ├── scan.c │ │ │ ├── solver.c │ │ │ ├── solvtab.c │ │ │ ├── stride.c │ │ │ ├── tensor.c │ │ │ ├── tensor1.c │ │ │ ├── tensor2.c │ │ │ ├── tensor3.c │ │ │ ├── tensor4.c │ │ │ ├── tensor5.c │ │ │ ├── tensor7.c │ │ │ ├── tensor8.c │ │ │ ├── tensor9.c │ │ │ ├── tile2d.c │ │ │ ├── timer.c │ │ │ ├── transpose.c │ │ │ ├── trig.c │ │ │ └── twiddle.c │ │ ├── libbench2 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── after-ccopy-from.c │ │ │ ├── after-ccopy-to.c │ │ │ ├── after-hccopy-from.c │ │ │ ├── after-hccopy-to.c │ │ │ ├── after-rcopy-from.c │ │ │ ├── after-rcopy-to.c │ │ │ ├── aligned-main.c │ │ │ ├── allocate.c │ │ │ ├── aset.c │ │ │ ├── bench-cost-postprocess.c │ │ │ ├── bench-exit.c │ │ │ ├── bench-main.c │ │ │ ├── bench-user.h │ │ │ ├── bench.h │ │ │ ├── can-do.c │ │ │ ├── caset.c │ │ │ ├── dotens2.c │ │ │ ├── info.c │ │ │ ├── main.c │ │ │ ├── mflops.c │ │ │ ├── mp.c │ │ │ ├── my-getopt.c │ │ │ ├── my-getopt.h │ │ │ ├── ovtpvt.c │ │ │ ├── pow2.c │ │ │ ├── problem.c │ │ │ ├── report.c │ │ │ ├── speed.c │ │ │ ├── tensor.c │ │ │ ├── timer.c │ │ │ ├── useropt.c │ │ │ ├── util.c │ │ │ ├── verify-dft.c │ │ │ ├── verify-lib.c │ │ │ ├── verify-r2r.c │ │ │ ├── verify-rdft2.c │ │ │ ├── verify.c │ │ │ ├── verify.h │ │ │ └── zero.c │ │ ├── ltmain.sh │ │ ├── m4 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── acx_mpi.m4 │ │ │ ├── acx_pthread.m4 │ │ │ ├── ax_cc_maxopt.m4 │ │ │ ├── ax_check_compiler_flags.m4 │ │ │ ├── ax_compiler_vendor.m4 │ │ │ ├── ax_gcc_aligns_stack.m4 │ │ │ ├── ax_gcc_archflag.m4 │ │ │ ├── ax_gcc_version.m4 │ │ │ ├── ax_gcc_x86_cpuid.m4 │ │ │ ├── ax_openmp.m4 │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ ├── lt~obsolete.m4 │ │ │ └── ocaml.m4 │ │ ├── missing │ │ ├── rdft │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── buffered.c │ │ │ ├── buffered2.c │ │ │ ├── codelet-rdft.h │ │ │ ├── conf.c │ │ │ ├── ct-hc2c-direct.c │ │ │ ├── ct-hc2c.c │ │ │ ├── ct-hc2c.h │ │ │ ├── dft-r2hc.c │ │ │ ├── dht-r2hc.c │ │ │ ├── dht-rader.c │ │ │ ├── direct-r2c.c │ │ │ ├── direct-r2r.c │ │ │ ├── direct2.c │ │ │ ├── generic.c │ │ │ ├── hc2hc-direct.c │ │ │ ├── hc2hc-generic.c │ │ │ ├── hc2hc.c │ │ │ ├── hc2hc.h │ │ │ ├── indirect.c │ │ │ ├── khc2c.c │ │ │ ├── khc2hc.c │ │ │ ├── kr2c.c │ │ │ ├── kr2r.c │ │ │ ├── nop.c │ │ │ ├── nop2.c │ │ │ ├── plan.c │ │ │ ├── plan2.c │ │ │ ├── problem.c │ │ │ ├── problem2.c │ │ │ ├── rank-geq2-rdft2.c │ │ │ ├── rank-geq2.c │ │ │ ├── rank0-rdft2.c │ │ │ ├── rank0.c │ │ │ ├── rdft-dht.c │ │ │ ├── rdft.h │ │ │ ├── rdft2-inplace-strides.c │ │ │ ├── rdft2-rdft.c │ │ │ ├── rdft2-strides.c │ │ │ ├── rdft2-tensor-max-index.c │ │ │ ├── scalar │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── hb.h │ │ │ │ ├── hc2c.c │ │ │ │ ├── hc2cb.h │ │ │ │ ├── hc2cf.h │ │ │ │ ├── hf.h │ │ │ │ ├── hfb.c │ │ │ │ ├── r2c.c │ │ │ │ ├── r2cb.h │ │ │ │ ├── r2cb │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── codlist.c │ │ │ │ │ ├── hb2_16.c │ │ │ │ │ ├── hb2_20.c │ │ │ │ │ ├── hb2_25.c │ │ │ │ │ ├── hb2_32.c │ │ │ │ │ ├── hb2_4.c │ │ │ │ │ ├── hb2_5.c │ │ │ │ │ ├── hb2_8.c │ │ │ │ │ ├── hb_10.c │ │ │ │ │ ├── hb_12.c │ │ │ │ │ ├── hb_15.c │ │ │ │ │ ├── hb_16.c │ │ │ │ │ ├── hb_2.c │ │ │ │ │ ├── hb_20.c │ │ │ │ │ ├── hb_25.c │ │ │ │ │ ├── hb_3.c │ │ │ │ │ ├── hb_32.c │ │ │ │ │ ├── hb_4.c │ │ │ │ │ ├── hb_5.c │ │ │ │ │ ├── hb_6.c │ │ │ │ │ ├── hb_64.c │ │ │ │ │ ├── hb_7.c │ │ │ │ │ ├── hb_8.c │ │ │ │ │ ├── hb_9.c │ │ │ │ │ ├── hc2cb2_16.c │ │ │ │ │ ├── hc2cb2_20.c │ │ │ │ │ ├── hc2cb2_32.c │ │ │ │ │ ├── hc2cb2_4.c │ │ │ │ │ ├── hc2cb2_8.c │ │ │ │ │ ├── hc2cb_10.c │ │ │ │ │ ├── hc2cb_12.c │ │ │ │ │ ├── hc2cb_16.c │ │ │ │ │ ├── hc2cb_2.c │ │ │ │ │ ├── hc2cb_20.c │ │ │ │ │ ├── hc2cb_32.c │ │ │ │ │ ├── hc2cb_4.c │ │ │ │ │ ├── hc2cb_6.c │ │ │ │ │ ├── hc2cb_8.c │ │ │ │ │ ├── hc2cbdft2_16.c │ │ │ │ │ ├── hc2cbdft2_20.c │ │ │ │ │ ├── hc2cbdft2_32.c │ │ │ │ │ ├── hc2cbdft2_4.c │ │ │ │ │ ├── hc2cbdft2_8.c │ │ │ │ │ ├── hc2cbdft_10.c │ │ │ │ │ ├── hc2cbdft_12.c │ │ │ │ │ ├── hc2cbdft_16.c │ │ │ │ │ ├── hc2cbdft_2.c │ │ │ │ │ ├── hc2cbdft_20.c │ │ │ │ │ ├── hc2cbdft_32.c │ │ │ │ │ ├── hc2cbdft_4.c │ │ │ │ │ ├── hc2cbdft_6.c │ │ │ │ │ ├── hc2cbdft_8.c │ │ │ │ │ ├── r2cbIII_10.c │ │ │ │ │ ├── r2cbIII_12.c │ │ │ │ │ ├── r2cbIII_15.c │ │ │ │ │ ├── r2cbIII_16.c │ │ │ │ │ ├── r2cbIII_2.c │ │ │ │ │ ├── r2cbIII_20.c │ │ │ │ │ ├── r2cbIII_25.c │ │ │ │ │ ├── r2cbIII_3.c │ │ │ │ │ ├── r2cbIII_32.c │ │ │ │ │ ├── r2cbIII_4.c │ │ │ │ │ ├── r2cbIII_5.c │ │ │ │ │ ├── r2cbIII_6.c │ │ │ │ │ ├── r2cbIII_64.c │ │ │ │ │ ├── r2cbIII_7.c │ │ │ │ │ ├── r2cbIII_8.c │ │ │ │ │ ├── r2cbIII_9.c │ │ │ │ │ ├── r2cb_10.c │ │ │ │ │ ├── r2cb_11.c │ │ │ │ │ ├── r2cb_12.c │ │ │ │ │ ├── r2cb_128.c │ │ │ │ │ ├── r2cb_13.c │ │ │ │ │ ├── r2cb_14.c │ │ │ │ │ ├── r2cb_15.c │ │ │ │ │ ├── r2cb_16.c │ │ │ │ │ ├── r2cb_2.c │ │ │ │ │ ├── r2cb_20.c │ │ │ │ │ ├── r2cb_25.c │ │ │ │ │ ├── r2cb_3.c │ │ │ │ │ ├── r2cb_32.c │ │ │ │ │ ├── r2cb_4.c │ │ │ │ │ ├── r2cb_5.c │ │ │ │ │ ├── r2cb_6.c │ │ │ │ │ ├── r2cb_64.c │ │ │ │ │ ├── r2cb_7.c │ │ │ │ │ ├── r2cb_8.c │ │ │ │ │ └── r2cb_9.c │ │ │ │ ├── r2cbIII.h │ │ │ │ ├── r2cf.h │ │ │ │ ├── r2cf │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── codlist.c │ │ │ │ │ ├── hc2cf2_16.c │ │ │ │ │ ├── hc2cf2_20.c │ │ │ │ │ ├── hc2cf2_32.c │ │ │ │ │ ├── hc2cf2_4.c │ │ │ │ │ ├── hc2cf2_8.c │ │ │ │ │ ├── hc2cf_10.c │ │ │ │ │ ├── hc2cf_12.c │ │ │ │ │ ├── hc2cf_16.c │ │ │ │ │ ├── hc2cf_2.c │ │ │ │ │ ├── hc2cf_20.c │ │ │ │ │ ├── hc2cf_32.c │ │ │ │ │ ├── hc2cf_4.c │ │ │ │ │ ├── hc2cf_6.c │ │ │ │ │ ├── hc2cf_8.c │ │ │ │ │ ├── hc2cfdft2_16.c │ │ │ │ │ ├── hc2cfdft2_20.c │ │ │ │ │ ├── hc2cfdft2_32.c │ │ │ │ │ ├── hc2cfdft2_4.c │ │ │ │ │ ├── hc2cfdft2_8.c │ │ │ │ │ ├── hc2cfdft_10.c │ │ │ │ │ ├── hc2cfdft_12.c │ │ │ │ │ ├── hc2cfdft_16.c │ │ │ │ │ ├── hc2cfdft_2.c │ │ │ │ │ ├── hc2cfdft_20.c │ │ │ │ │ ├── hc2cfdft_32.c │ │ │ │ │ ├── hc2cfdft_4.c │ │ │ │ │ ├── hc2cfdft_6.c │ │ │ │ │ ├── hc2cfdft_8.c │ │ │ │ │ ├── hf2_16.c │ │ │ │ │ ├── hf2_20.c │ │ │ │ │ ├── hf2_25.c │ │ │ │ │ ├── hf2_32.c │ │ │ │ │ ├── hf2_4.c │ │ │ │ │ ├── hf2_5.c │ │ │ │ │ ├── hf2_8.c │ │ │ │ │ ├── hf_10.c │ │ │ │ │ ├── hf_12.c │ │ │ │ │ ├── hf_15.c │ │ │ │ │ ├── hf_16.c │ │ │ │ │ ├── hf_2.c │ │ │ │ │ ├── hf_20.c │ │ │ │ │ ├── hf_25.c │ │ │ │ │ ├── hf_3.c │ │ │ │ │ ├── hf_32.c │ │ │ │ │ ├── hf_4.c │ │ │ │ │ ├── hf_5.c │ │ │ │ │ ├── hf_6.c │ │ │ │ │ ├── hf_64.c │ │ │ │ │ ├── hf_7.c │ │ │ │ │ ├── hf_8.c │ │ │ │ │ ├── hf_9.c │ │ │ │ │ ├── r2cfII_10.c │ │ │ │ │ ├── r2cfII_12.c │ │ │ │ │ ├── r2cfII_15.c │ │ │ │ │ ├── r2cfII_16.c │ │ │ │ │ ├── r2cfII_2.c │ │ │ │ │ ├── r2cfII_20.c │ │ │ │ │ ├── r2cfII_25.c │ │ │ │ │ ├── r2cfII_3.c │ │ │ │ │ ├── r2cfII_32.c │ │ │ │ │ ├── r2cfII_4.c │ │ │ │ │ ├── r2cfII_5.c │ │ │ │ │ ├── r2cfII_6.c │ │ │ │ │ ├── r2cfII_64.c │ │ │ │ │ ├── r2cfII_7.c │ │ │ │ │ ├── r2cfII_8.c │ │ │ │ │ ├── r2cfII_9.c │ │ │ │ │ ├── r2cf_10.c │ │ │ │ │ ├── r2cf_11.c │ │ │ │ │ ├── r2cf_12.c │ │ │ │ │ ├── r2cf_128.c │ │ │ │ │ ├── r2cf_13.c │ │ │ │ │ ├── r2cf_14.c │ │ │ │ │ ├── r2cf_15.c │ │ │ │ │ ├── r2cf_16.c │ │ │ │ │ ├── r2cf_2.c │ │ │ │ │ ├── r2cf_20.c │ │ │ │ │ ├── r2cf_25.c │ │ │ │ │ ├── r2cf_3.c │ │ │ │ │ ├── r2cf_32.c │ │ │ │ │ ├── r2cf_4.c │ │ │ │ │ ├── r2cf_5.c │ │ │ │ │ ├── r2cf_6.c │ │ │ │ │ ├── r2cf_64.c │ │ │ │ │ ├── r2cf_7.c │ │ │ │ │ ├── r2cf_8.c │ │ │ │ │ └── r2cf_9.c │ │ │ │ ├── r2cfII.h │ │ │ │ ├── r2r.c │ │ │ │ ├── r2r.h │ │ │ │ └── r2r │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── codlist.c │ │ │ │ │ ├── e01_8.c │ │ │ │ │ └── e10_8.c │ │ │ ├── simd │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── codelets │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── codlist.c │ │ │ │ │ ├── hc2cbdftv_10.c │ │ │ │ │ ├── hc2cbdftv_12.c │ │ │ │ │ ├── hc2cbdftv_16.c │ │ │ │ │ ├── hc2cbdftv_2.c │ │ │ │ │ ├── hc2cbdftv_20.c │ │ │ │ │ ├── hc2cbdftv_32.c │ │ │ │ │ ├── hc2cbdftv_4.c │ │ │ │ │ ├── hc2cbdftv_6.c │ │ │ │ │ ├── hc2cbdftv_8.c │ │ │ │ │ ├── hc2cfdftv_10.c │ │ │ │ │ ├── hc2cfdftv_12.c │ │ │ │ │ ├── hc2cfdftv_16.c │ │ │ │ │ ├── hc2cfdftv_2.c │ │ │ │ │ ├── hc2cfdftv_20.c │ │ │ │ │ ├── hc2cfdftv_32.c │ │ │ │ │ ├── hc2cfdftv_4.c │ │ │ │ │ ├── hc2cfdftv_6.c │ │ │ │ │ └── hc2cfdftv_8.c │ │ │ │ ├── hc2cbv.c │ │ │ │ ├── hc2cbv.h │ │ │ │ ├── hc2cfv.c │ │ │ │ └── hc2cfv.h │ │ │ ├── solve.c │ │ │ ├── solve2.c │ │ │ ├── vrank-geq1-rdft2.c │ │ │ ├── vrank-geq1.c │ │ │ └── vrank3-transpose.c │ │ ├── reodft │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── conf.c │ │ │ ├── redft00e-r2hc-pad.c │ │ │ ├── redft00e-r2hc.c │ │ │ ├── reodft.h │ │ │ ├── reodft00e-splitradix.c │ │ │ ├── reodft010e-r2hc.c │ │ │ ├── reodft11e-r2hc-odd.c │ │ │ ├── reodft11e-r2hc.c │ │ │ ├── reodft11e-radix2.c │ │ │ ├── rodft00e-r2hc-pad.c │ │ │ └── rodft00e-r2hc.c │ │ ├── simd │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── altivec.c │ │ │ ├── mips_ps.c │ │ │ ├── mips_ps.h │ │ │ ├── nonportable │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── sse.c │ │ │ │ └── sse2.c │ │ │ ├── simd-altivec.h │ │ │ ├── simd-mips_ps.h │ │ │ ├── simd-sse.h │ │ │ ├── simd-sse2.h │ │ │ ├── simd.h │ │ │ ├── sse.c │ │ │ ├── sse2.c │ │ │ ├── taint.c │ │ │ └── x86-cpuid.h │ │ ├── support │ │ │ ├── Makefile.am │ │ │ ├── Makefile.codelets │ │ │ ├── Makefile.in │ │ │ ├── addchain.c │ │ │ ├── codelet_prelude.dft │ │ │ ├── codelet_prelude.rdft │ │ │ └── twovers.sh │ │ ├── tests │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── bench.c │ │ │ ├── check.pl │ │ │ ├── fftw-bench.c │ │ │ ├── fftw-bench.h │ │ │ └── hook.c │ │ ├── threads │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── api.c │ │ │ ├── conf.c │ │ │ ├── ct.c │ │ │ ├── dft-vrank-geq1.c │ │ │ ├── f77api.c │ │ │ ├── f77funcs.h │ │ │ ├── hc2hc.c │ │ │ ├── openmp.c │ │ │ ├── rdft-vrank-geq1.c │ │ │ ├── threads.c │ │ │ ├── threads.h │ │ │ └── vrank-geq1-rdft2.c │ │ └── tools │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── fftw-wisdom-to-conf.1 │ │ │ ├── fftw-wisdom-to-conf.in │ │ │ ├── fftw-wisdom.c │ │ │ ├── fftw_wisdom.1.in │ │ │ └── fftwf-wisdom.1 │ └── loki-0.1.6 │ │ ├── CHANGES │ │ ├── Loki.dev │ │ ├── Loki.sln │ │ ├── Loki_Debug.dev │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── Makefile.deps │ │ ├── README │ │ ├── doc │ │ ├── Doxyfile │ │ ├── flex │ │ │ └── flex_string.html │ │ ├── html │ │ │ ├── a00001.html │ │ │ ├── a00002.html │ │ │ ├── a00003.html │ │ │ ├── a00004.html │ │ │ ├── a00005.html │ │ │ ├── a00006.html │ │ │ ├── a00007.html │ │ │ ├── a00008.html │ │ │ ├── a00009.html │ │ │ ├── a00010.html │ │ │ ├── a00011.html │ │ │ ├── a00012.html │ │ │ ├── a00013.html │ │ │ ├── a00013_033978d127f16d2da0fd79d31ee75713_cgraph.dot │ │ │ ├── a00013_033978d127f16d2da0fd79d31ee75713_cgraph.md5 │ │ │ ├── a00013_082b4ba1c6574c5bed916c55ecf46e82_cgraph.dot │ │ │ ├── a00013_082b4ba1c6574c5bed916c55ecf46e82_cgraph.md5 │ │ │ ├── a00014.html │ │ │ ├── a00015.html │ │ │ ├── a00016.html │ │ │ ├── a00017.html │ │ │ ├── a00018.html │ │ │ ├── a00019.html │ │ │ ├── a00020.html │ │ │ ├── a00021.html │ │ │ ├── a00022.html │ │ │ ├── a00023.html │ │ │ ├── a00024.html │ │ │ ├── a00025.html │ │ │ ├── a00026.html │ │ │ ├── a00027.html │ │ │ ├── a00028.html │ │ │ ├── a00029.html │ │ │ ├── a00030.html │ │ │ ├── a00031.html │ │ │ ├── a00032.html │ │ │ ├── a00033.html │ │ │ ├── a00034.html │ │ │ ├── a00035.html │ │ │ ├── a00036.html │ │ │ ├── a00037.html │ │ │ ├── a00038.html │ │ │ ├── a00039.html │ │ │ ├── a00040.html │ │ │ ├── a00041.html │ │ │ ├── a00042.html │ │ │ ├── a00043.html │ │ │ ├── a00044.html │ │ │ ├── a00045.html │ │ │ ├── a00046.html │ │ │ ├── a00047.html │ │ │ ├── a00048.html │ │ │ ├── a00049.html │ │ │ ├── a00050.html │ │ │ ├── a00051.html │ │ │ ├── a00052.html │ │ │ ├── a00053.html │ │ │ ├── a00054.html │ │ │ ├── a00055.html │ │ │ ├── a00056.html │ │ │ ├── a00057.html │ │ │ ├── a00058.html │ │ │ ├── a00059.html │ │ │ ├── a00060.html │ │ │ ├── a00061.html │ │ │ ├── a00062.html │ │ │ ├── a00063.html │ │ │ ├── a00064.html │ │ │ ├── a00065.html │ │ │ ├── a00066.html │ │ │ ├── a00067.html │ │ │ ├── a00068.html │ │ │ ├── a00069.html │ │ │ ├── a00070.html │ │ │ ├── a00071.html │ │ │ ├── a00072.html │ │ │ ├── a00073.html │ │ │ ├── a00074.html │ │ │ ├── a00075.html │ │ │ ├── a00076.html │ │ │ ├── a00077.html │ │ │ ├── a00078.html │ │ │ ├── a00079.html │ │ │ ├── a00080.html │ │ │ ├── a00081.html │ │ │ ├── a00082.html │ │ │ ├── a00083.html │ │ │ ├── a00084.html │ │ │ ├── a00085.html │ │ │ ├── a00086.html │ │ │ ├── a00087.html │ │ │ ├── a00088.html │ │ │ ├── a00089.html │ │ │ ├── a00090.html │ │ │ ├── a00091.html │ │ │ ├── a00092.html │ │ │ ├── a00093.html │ │ │ ├── a00094.html │ │ │ ├── a00095.html │ │ │ ├── a00096.html │ │ │ ├── a00097.html │ │ │ ├── a00098.html │ │ │ ├── a00099.html │ │ │ ├── a00100.html │ │ │ ├── a00101.html │ │ │ ├── a00102.html │ │ │ ├── a00103.html │ │ │ ├── a00104.html │ │ │ ├── a00105.html │ │ │ ├── a00106.html │ │ │ ├── a00107.html │ │ │ ├── a00108.html │ │ │ ├── a00109.html │ │ │ ├── a00110.html │ │ │ ├── a00111.html │ │ │ ├── a00112.html │ │ │ ├── a00113.html │ │ │ ├── a00114.html │ │ │ ├── a00115.html │ │ │ ├── a00116.html │ │ │ ├── a00117.html │ │ │ ├── a00118.html │ │ │ ├── a00119.html │ │ │ ├── a00120.html │ │ │ ├── a00121.html │ │ │ ├── a00122.html │ │ │ ├── a00123.html │ │ │ ├── a00124.html │ │ │ ├── a00125.html │ │ │ ├── a00126.html │ │ │ ├── a00127.html │ │ │ ├── a00128.html │ │ │ ├── a00129.html │ │ │ ├── a00130.html │ │ │ ├── a00131.html │ │ │ ├── a00132.html │ │ │ ├── a00133.html │ │ │ ├── a00133_34c1f52fe13eef355a6e91cf79ccec20_cgraph.dot │ │ │ ├── a00133_34c1f52fe13eef355a6e91cf79ccec20_cgraph.md5 │ │ │ ├── a00133_49ab7ca3364fe05f2d7d91248ee5d0e3_cgraph.dot │ │ │ ├── a00133_49ab7ca3364fe05f2d7d91248ee5d0e3_cgraph.md5 │ │ │ ├── a00133_4df95a9324de31f05d931f2eea25165e_cgraph.dot │ │ │ ├── a00133_4df95a9324de31f05d931f2eea25165e_cgraph.md5 │ │ │ ├── a00133_c29973a11534fb1006fd28db97a17bed_cgraph.dot │ │ │ ├── a00133_c29973a11534fb1006fd28db97a17bed_cgraph.md5 │ │ │ ├── a00134.html │ │ │ ├── a00135.html │ │ │ ├── a00136.html │ │ │ ├── a00137.html │ │ │ ├── a00138.html │ │ │ ├── a00139.html │ │ │ ├── a00140.html │ │ │ ├── a00141.html │ │ │ ├── a00142.html │ │ │ ├── a00143.html │ │ │ ├── a00144.html │ │ │ ├── a00145.html │ │ │ ├── a00146.html │ │ │ ├── a00147.html │ │ │ ├── a00148.html │ │ │ ├── a00149.html │ │ │ ├── a00150.html │ │ │ ├── a00151.html │ │ │ ├── a00152.html │ │ │ ├── a00153.html │ │ │ ├── a00154.html │ │ │ ├── a00155.html │ │ │ ├── a00156.html │ │ │ ├── a00157.html │ │ │ ├── a00158.html │ │ │ ├── a00159.html │ │ │ ├── a00160.html │ │ │ ├── a00161.html │ │ │ ├── a00162.html │ │ │ ├── a00163.html │ │ │ ├── a00164.html │ │ │ ├── a00165.html │ │ │ ├── a00166.html │ │ │ ├── a00167.html │ │ │ ├── a00168.html │ │ │ ├── a00169.html │ │ │ ├── a00170.html │ │ │ ├── a00171.html │ │ │ ├── a00172.html │ │ │ ├── a00173.html │ │ │ ├── a00174.html │ │ │ ├── a00175.html │ │ │ ├── a00176.html │ │ │ ├── a00177.html │ │ │ ├── a00178.html │ │ │ ├── a00179.html │ │ │ ├── a00180.html │ │ │ ├── a00181.html │ │ │ ├── a00182.html │ │ │ ├── a00183.html │ │ │ ├── a00184.html │ │ │ ├── a00185.html │ │ │ ├── a00186.html │ │ │ ├── a00187.html │ │ │ ├── a00188.html │ │ │ ├── a00189.html │ │ │ ├── a00190.html │ │ │ ├── a00191.html │ │ │ ├── a00192.html │ │ │ ├── a00193.html │ │ │ ├── a00194.html │ │ │ ├── a00195.html │ │ │ ├── a00196.html │ │ │ ├── a00197.html │ │ │ ├── a00198.html │ │ │ ├── a00199.html │ │ │ ├── a00200.html │ │ │ ├── a00201.html │ │ │ ├── a00202.html │ │ │ ├── a00203.html │ │ │ ├── a00204.html │ │ │ ├── a00205.html │ │ │ ├── a00206.html │ │ │ ├── a00207.html │ │ │ ├── a00208.html │ │ │ ├── a00209.html │ │ │ ├── a00210.html │ │ │ ├── a00211.html │ │ │ ├── a00212.html │ │ │ ├── a00213.html │ │ │ ├── a00214.html │ │ │ ├── a00215.html │ │ │ ├── a00216.html │ │ │ ├── a00217.html │ │ │ ├── a00218.html │ │ │ ├── a00219.html │ │ │ ├── a00220.html │ │ │ ├── a00221.html │ │ │ ├── a00222.html │ │ │ ├── a00223.html │ │ │ ├── a00224.html │ │ │ ├── a00225.html │ │ │ ├── a00226.html │ │ │ ├── a00227.html │ │ │ ├── a00228.html │ │ │ ├── a00229.html │ │ │ ├── a00230.html │ │ │ ├── a00231.html │ │ │ ├── a00232.html │ │ │ ├── a00233.html │ │ │ ├── a00234.html │ │ │ ├── a00235.html │ │ │ ├── a00236.html │ │ │ ├── a00237.html │ │ │ ├── a00238.html │ │ │ ├── a00239.html │ │ │ ├── a00240.html │ │ │ ├── a00241.html │ │ │ ├── a00242.html │ │ │ ├── a00243.html │ │ │ ├── a00244.html │ │ │ ├── a00245.html │ │ │ ├── a00246.html │ │ │ ├── a00247.html │ │ │ ├── a00248.html │ │ │ ├── a00249.html │ │ │ ├── a00250.html │ │ │ ├── a00251.html │ │ │ ├── a00252.html │ │ │ ├── a00253.html │ │ │ ├── a00254.html │ │ │ ├── a00255.html │ │ │ ├── a00256.html │ │ │ ├── a00257.html │ │ │ ├── a00258.html │ │ │ ├── a00259.html │ │ │ ├── a00260.html │ │ │ ├── a00261.html │ │ │ ├── a00262.html │ │ │ ├── a00263.html │ │ │ ├── a00264.html │ │ │ ├── a00265.html │ │ │ ├── a00266.html │ │ │ ├── a00267.html │ │ │ ├── a00268.html │ │ │ ├── a00269.html │ │ │ ├── a00270.html │ │ │ ├── a00271.html │ │ │ ├── a00272.html │ │ │ ├── a00273.html │ │ │ ├── a00274.html │ │ │ ├── a00275.html │ │ │ ├── a00276.html │ │ │ ├── a00277.html │ │ │ ├── a00278.html │ │ │ ├── a00279.html │ │ │ ├── a00280.html │ │ │ ├── a00281.html │ │ │ ├── a00282.html │ │ │ ├── a00283.html │ │ │ ├── a00284.html │ │ │ ├── a00285.html │ │ │ ├── a00286.html │ │ │ ├── a00287.html │ │ │ ├── a00288.html │ │ │ ├── a00289.html │ │ │ ├── a00290.html │ │ │ ├── a00291.html │ │ │ ├── a00292.html │ │ │ ├── a00293.html │ │ │ ├── a00294.html │ │ │ ├── a00295.html │ │ │ ├── a00296.html │ │ │ ├── a00297.html │ │ │ ├── a00298.html │ │ │ ├── a00299.html │ │ │ ├── a00300.html │ │ │ ├── a00301.html │ │ │ ├── a00302.html │ │ │ ├── a00303.html │ │ │ ├── a00304.html │ │ │ ├── a00305.html │ │ │ ├── a00306.html │ │ │ ├── a00307.html │ │ │ ├── a00308.html │ │ │ ├── a00309.html │ │ │ ├── a00310.html │ │ │ ├── a00311.html │ │ │ ├── a00312.html │ │ │ ├── a00313.html │ │ │ ├── a00314.html │ │ │ ├── a00315.html │ │ │ ├── a00316.html │ │ │ ├── a00317.html │ │ │ ├── a00318.html │ │ │ ├── a00319.html │ │ │ ├── a00320.html │ │ │ ├── a00321.html │ │ │ ├── a00322.html │ │ │ ├── a00323.html │ │ │ ├── a00324.html │ │ │ ├── a00325.html │ │ │ ├── a00326.html │ │ │ ├── a00327.html │ │ │ ├── a00328.html │ │ │ ├── a00329.html │ │ │ ├── a00330.html │ │ │ ├── a00331.html │ │ │ ├── a00332.html │ │ │ ├── a00333.html │ │ │ ├── a00334.html │ │ │ ├── a00335.html │ │ │ ├── a00336.html │ │ │ ├── a00337.html │ │ │ ├── a00338.html │ │ │ ├── a00339.html │ │ │ ├── a00340.html │ │ │ ├── a00341.html │ │ │ ├── a00342.html │ │ │ ├── a00343.html │ │ │ ├── a00344.html │ │ │ ├── a00345.html │ │ │ ├── a00346.html │ │ │ ├── a00347.html │ │ │ ├── a00348.html │ │ │ ├── a00349.html │ │ │ ├── a00350.html │ │ │ ├── a00351.html │ │ │ ├── a00352.html │ │ │ ├── a00353.html │ │ │ ├── a00354.html │ │ │ ├── a00355.html │ │ │ ├── a00356.html │ │ │ ├── a00357.html │ │ │ ├── a00358.html │ │ │ ├── a00359.html │ │ │ ├── a00360.html │ │ │ ├── a00361.html │ │ │ ├── a00362.html │ │ │ ├── a00363.html │ │ │ ├── a00364.html │ │ │ ├── a00365.html │ │ │ ├── a00366.html │ │ │ ├── a00367.html │ │ │ ├── a00368.html │ │ │ ├── a00369.html │ │ │ ├── a00370.html │ │ │ ├── a00371.html │ │ │ ├── a00372.html │ │ │ ├── a00373.html │ │ │ ├── a00374.html │ │ │ ├── a00375.html │ │ │ ├── a00376.html │ │ │ ├── a00377.html │ │ │ ├── a00378.html │ │ │ ├── a00379.html │ │ │ ├── a00380.html │ │ │ ├── a00381.html │ │ │ ├── a00382.html │ │ │ ├── a00383.html │ │ │ ├── a00384.html │ │ │ ├── a00385.html │ │ │ ├── a00386.html │ │ │ ├── a00387.html │ │ │ ├── a00388.html │ │ │ ├── a00389.html │ │ │ ├── a00390.html │ │ │ ├── a00391.html │ │ │ ├── a00392.html │ │ │ ├── a00393.html │ │ │ ├── a00394.html │ │ │ ├── a00395.html │ │ │ ├── a00396.html │ │ │ ├── a00397.html │ │ │ ├── a00398.html │ │ │ ├── a00399.html │ │ │ ├── a00400.html │ │ │ ├── a00401.html │ │ │ ├── a00402.html │ │ │ ├── a00403.html │ │ │ ├── a00404.html │ │ │ ├── a00405.html │ │ │ ├── a00406.html │ │ │ ├── a00407.html │ │ │ ├── a00408.html │ │ │ ├── a00409.html │ │ │ ├── a00410.html │ │ │ ├── a00411.html │ │ │ ├── a00412.html │ │ │ ├── a00413.html │ │ │ ├── a00414.html │ │ │ ├── a00415.html │ │ │ ├── a00416.html │ │ │ ├── a00417.html │ │ │ ├── a00418.html │ │ │ ├── a00419.html │ │ │ ├── a00420.html │ │ │ ├── a00421.html │ │ │ ├── a00422.html │ │ │ ├── a00423.html │ │ │ ├── a00424.html │ │ │ ├── a00425.html │ │ │ ├── a00426.html │ │ │ ├── a00427.html │ │ │ ├── a00428.html │ │ │ ├── a00429.html │ │ │ ├── a00430.html │ │ │ ├── a00431.html │ │ │ ├── a00432.html │ │ │ ├── a00433.html │ │ │ ├── a00434.html │ │ │ ├── a00435.html │ │ │ ├── a00436.html │ │ │ ├── a00437.html │ │ │ ├── a00438.html │ │ │ ├── a00439.html │ │ │ ├── a00440.html │ │ │ ├── a00441.html │ │ │ ├── a00442.html │ │ │ ├── a00443.html │ │ │ ├── a00444.html │ │ │ ├── a00445.html │ │ │ ├── a00446.html │ │ │ ├── a00447.html │ │ │ ├── a00448.html │ │ │ ├── a00449.html │ │ │ ├── a00450.html │ │ │ ├── a00451.html │ │ │ ├── a00452.html │ │ │ ├── a00453.html │ │ │ ├── a00454.html │ │ │ ├── a00455.html │ │ │ ├── a00456.html │ │ │ ├── a00457.html │ │ │ ├── a00458.html │ │ │ ├── a00459.html │ │ │ ├── a00460.html │ │ │ ├── a00461.html │ │ │ ├── a00462.html │ │ │ ├── a00463.html │ │ │ ├── a00464.html │ │ │ ├── a00465.html │ │ │ ├── a00466.html │ │ │ ├── a00467.html │ │ │ ├── a00468.html │ │ │ ├── a00469.html │ │ │ ├── a00470.html │ │ │ ├── a00471.html │ │ │ ├── a00472.html │ │ │ ├── a00473.html │ │ │ ├── a00474.html │ │ │ ├── a00475.html │ │ │ ├── a00476.html │ │ │ ├── a00477.html │ │ │ ├── a00478.html │ │ │ ├── a00479.html │ │ │ ├── a00480.html │ │ │ ├── a00481.html │ │ │ ├── a00482.html │ │ │ ├── a00483.html │ │ │ ├── a00484.html │ │ │ ├── a00485.html │ │ │ ├── a00486.html │ │ │ ├── a00487.html │ │ │ ├── a00488.html │ │ │ ├── a00489.html │ │ │ ├── a00490.html │ │ │ ├── a00491.html │ │ │ ├── a00492.html │ │ │ ├── a00493.html │ │ │ ├── a00494.html │ │ │ ├── a00495.html │ │ │ ├── a00496.html │ │ │ ├── a00497.html │ │ │ ├── a00498.html │ │ │ ├── a00499.html │ │ │ ├── a00500.html │ │ │ ├── a00501.html │ │ │ ├── a00502.html │ │ │ ├── a00503.html │ │ │ ├── a00504.html │ │ │ ├── a00505.html │ │ │ ├── a00506.html │ │ │ ├── a00507.html │ │ │ ├── a00508.html │ │ │ ├── a00509.html │ │ │ ├── a00510.html │ │ │ ├── a00511.html │ │ │ ├── a00512.html │ │ │ ├── a00513.html │ │ │ ├── a00514.html │ │ │ ├── a00515.html │ │ │ ├── a00516.html │ │ │ ├── a00517.html │ │ │ ├── a00518.html │ │ │ ├── a00519.html │ │ │ ├── a00520.html │ │ │ ├── a00521.html │ │ │ ├── a00522.html │ │ │ ├── a00523.html │ │ │ ├── a00524.html │ │ │ ├── a00524_2b669733cfa9dd157603d13d979f8c1c_cgraph.dot │ │ │ ├── a00524_2b669733cfa9dd157603d13d979f8c1c_cgraph.md5 │ │ │ ├── a00524_3199a817e272e76400cc7fc4d2d117a7_cgraph.dot │ │ │ ├── a00524_3199a817e272e76400cc7fc4d2d117a7_cgraph.md5 │ │ │ ├── a00524_3d40b34b1a2d08a6bb9d9fa22ab5ce24_cgraph.dot │ │ │ ├── a00524_3d40b34b1a2d08a6bb9d9fa22ab5ce24_cgraph.md5 │ │ │ ├── a00524_50406896d75a2591d4bd7dc53325e3d6_cgraph.dot │ │ │ ├── a00524_50406896d75a2591d4bd7dc53325e3d6_cgraph.md5 │ │ │ ├── a00524_6b635664b20a6984303dabde86c8ac83_cgraph.dot │ │ │ ├── a00524_6b635664b20a6984303dabde86c8ac83_cgraph.md5 │ │ │ ├── a00524_a41bb717d552cd0df57a941def7ec607_cgraph.dot │ │ │ ├── a00524_a41bb717d552cd0df57a941def7ec607_cgraph.md5 │ │ │ ├── a00525.html │ │ │ ├── a00526.html │ │ │ ├── a00527.html │ │ │ ├── a00528.html │ │ │ ├── a00529.html │ │ │ ├── a00530.html │ │ │ ├── a00531.html │ │ │ ├── a00532.html │ │ │ ├── a00533.html │ │ │ ├── a00534.html │ │ │ ├── a00535.html │ │ │ ├── a00536.html │ │ │ ├── a00537.html │ │ │ ├── a00538.html │ │ │ ├── a00539.html │ │ │ ├── a00540.html │ │ │ ├── a00541.html │ │ │ ├── a00542.html │ │ │ ├── a00543.html │ │ │ ├── a00544.html │ │ │ ├── a00545.html │ │ │ ├── a00546.html │ │ │ ├── a00547.html │ │ │ ├── a00548.html │ │ │ ├── a00549.html │ │ │ ├── a00550.html │ │ │ ├── a00551.html │ │ │ ├── a00552.html │ │ │ ├── a00553.html │ │ │ ├── a00554.html │ │ │ ├── a00555.html │ │ │ ├── a00556.html │ │ │ ├── a00557.html │ │ │ ├── a00558.html │ │ │ ├── a00559.html │ │ │ ├── a00560.html │ │ │ ├── a00561.html │ │ │ ├── a00562.html │ │ │ ├── a00563.html │ │ │ ├── a00564.html │ │ │ ├── a00565.html │ │ │ ├── a00608.html │ │ │ ├── a00609.html │ │ │ ├── a00610.html │ │ │ ├── a00611.html │ │ │ ├── a00612.html │ │ │ ├── a00613.html │ │ │ ├── a00614.dot │ │ │ ├── a00614.html │ │ │ ├── a00615.dot │ │ │ ├── a00615.html │ │ │ ├── a00616.dot │ │ │ ├── a00616.html │ │ │ ├── a00617.dot │ │ │ ├── a00617.html │ │ │ ├── a00618.dot │ │ │ ├── a00618.html │ │ │ ├── a00619.dot │ │ │ ├── a00619.html │ │ │ ├── a00620.dot │ │ │ ├── a00620.html │ │ │ ├── a00621.dot │ │ │ ├── a00621.html │ │ │ ├── a00622.dot │ │ │ ├── a00622.html │ │ │ ├── a00623.dot │ │ │ ├── a00623.html │ │ │ ├── a00624.html │ │ │ ├── a00625.html │ │ │ ├── a00626.html │ │ │ ├── a00627.html │ │ │ ├── a00628.dot │ │ │ ├── a00628.html │ │ │ ├── a00629.dot │ │ │ ├── a00629.html │ │ │ ├── a00630.dot │ │ │ ├── a00630.html │ │ │ ├── a00630_g82d4520d213b3b9ef2090f5e237874cf_cgraph.dot │ │ │ ├── a00630_g82d4520d213b3b9ef2090f5e237874cf_cgraph.md5 │ │ │ ├── a00631.dot │ │ │ ├── a00631.html │ │ │ ├── a00632.dot │ │ │ ├── a00632.html │ │ │ ├── a00633.dot │ │ │ ├── a00633.html │ │ │ ├── a00634.dot │ │ │ ├── a00634.html │ │ │ ├── a00634_g05304aaf9fabf1dda13ddff6146e2fe2_cgraph.dot │ │ │ ├── a00634_g05304aaf9fabf1dda13ddff6146e2fe2_cgraph.md5 │ │ │ ├── a00634_g19b38e411732f476e3b288ccbd397331_cgraph.dot │ │ │ ├── a00634_g19b38e411732f476e3b288ccbd397331_cgraph.md5 │ │ │ ├── a00634_g239a9b1c4e557388ba4b9c39051c3f4e_cgraph.dot │ │ │ ├── a00634_g239a9b1c4e557388ba4b9c39051c3f4e_cgraph.md5 │ │ │ ├── a00634_g24773dba1237da071b5df66455393f1d_cgraph.dot │ │ │ ├── a00634_g24773dba1237da071b5df66455393f1d_cgraph.md5 │ │ │ ├── a00634_g26dc37f18d3112b69b35514b5e1fd749_cgraph.dot │ │ │ ├── a00634_g26dc37f18d3112b69b35514b5e1fd749_cgraph.md5 │ │ │ ├── a00634_g272c9c4d6381679daba26c93ac36a70e_cgraph.dot │ │ │ ├── a00634_g272c9c4d6381679daba26c93ac36a70e_cgraph.md5 │ │ │ ├── a00634_g7abc768179c277d50bbb59fdee609668_cgraph.dot │ │ │ ├── a00634_g7abc768179c277d50bbb59fdee609668_cgraph.md5 │ │ │ ├── a00634_g7c1d35d961854e812b743b22c89f14f8_cgraph.dot │ │ │ ├── a00634_g7c1d35d961854e812b743b22c89f14f8_cgraph.md5 │ │ │ ├── a00634_g8408e61306f223b3721f7792c8e172a9_cgraph.dot │ │ │ ├── a00634_g8408e61306f223b3721f7792c8e172a9_cgraph.md5 │ │ │ ├── a00634_g93341dd134031aede8273376ed13578d_cgraph.dot │ │ │ ├── a00634_g93341dd134031aede8273376ed13578d_cgraph.md5 │ │ │ ├── a00634_gb3333b9378688690b921def21298d2bf_cgraph.dot │ │ │ ├── a00634_gb3333b9378688690b921def21298d2bf_cgraph.md5 │ │ │ ├── a00634_gb5a35f4e3da89fb451c36891a96ab244_cgraph.dot │ │ │ ├── a00634_gb5a35f4e3da89fb451c36891a96ab244_cgraph.md5 │ │ │ ├── a00634_gd6031d88c8485cea6a6f4a89356e638a_cgraph.dot │ │ │ ├── a00634_gd6031d88c8485cea6a6f4a89356e638a_cgraph.md5 │ │ │ ├── a00634_gf8a4e6ef7065932113a924ee9e9fd63a_cgraph.dot │ │ │ ├── a00634_gf8a4e6ef7065932113a924ee9e9fd63a_cgraph.md5 │ │ │ ├── a00635.dot │ │ │ ├── a00635.html │ │ │ ├── a00636.dot │ │ │ ├── a00636.html │ │ │ ├── a00637.dot │ │ │ ├── a00637.html │ │ │ ├── a00638.dot │ │ │ ├── a00638.html │ │ │ ├── a00639.dot │ │ │ ├── a00639.html │ │ │ ├── a00640.dot │ │ │ ├── a00640.html │ │ │ ├── a00641.dot │ │ │ ├── a00641.html │ │ │ ├── a00642.html │ │ │ ├── a00643.html │ │ │ ├── a00644.html │ │ │ ├── a00645.html │ │ │ ├── a00646.html │ │ │ ├── a00647.html │ │ │ ├── a00648.html │ │ │ ├── a00649.html │ │ │ ├── a00650.html │ │ │ ├── a00651.html │ │ │ ├── a00652.html │ │ │ ├── a00653.html │ │ │ ├── a00654.html │ │ │ ├── a00655.html │ │ │ ├── a00656.html │ │ │ ├── a00657.html │ │ │ ├── a00658.html │ │ │ ├── a00659.html │ │ │ ├── a00660.html │ │ │ ├── a00661.html │ │ │ ├── a00662.html │ │ │ ├── a00663.html │ │ │ ├── a00664.html │ │ │ ├── a00665.html │ │ │ ├── a00666.html │ │ │ ├── a00667.html │ │ │ ├── a00668.html │ │ │ ├── a00669.html │ │ │ ├── a00670.html │ │ │ ├── a00671.html │ │ │ ├── a00672.html │ │ │ ├── a00673.html │ │ │ ├── a00674.html │ │ │ ├── a00675.html │ │ │ ├── a00676.html │ │ │ ├── a00677.html │ │ │ ├── a00678.html │ │ │ ├── a00679.html │ │ │ ├── a00680.html │ │ │ ├── a00681.html │ │ │ ├── a00682.html │ │ │ ├── a00683.html │ │ │ ├── a00684.html │ │ │ ├── a00685.html │ │ │ ├── a00687.dot │ │ │ ├── a00687.md5 │ │ │ ├── a00688.dot │ │ │ ├── a00688.md5 │ │ │ ├── a00689.html │ │ │ ├── a00690.dot │ │ │ ├── a00690.md5 │ │ │ ├── a00691.dot │ │ │ ├── a00691.md5 │ │ │ ├── a00692.html │ │ │ ├── a00693.html │ │ │ ├── a00694.html │ │ │ ├── a00695.html │ │ │ ├── a00696.dot │ │ │ ├── a00696.md5 │ │ │ ├── a00697.dot │ │ │ ├── a00697.md5 │ │ │ ├── a00698.html │ │ │ ├── a00699.html │ │ │ ├── a00700.html │ │ │ ├── a00701.html │ │ │ ├── a00702.html │ │ │ ├── a00703.html │ │ │ ├── a00704.html │ │ │ ├── a00705.html │ │ │ ├── a00706.html │ │ │ ├── a00707.html │ │ │ ├── a00708.dot │ │ │ ├── a00708.md5 │ │ │ ├── a00709.html │ │ │ ├── a00710.dot │ │ │ ├── a00710.md5 │ │ │ ├── a00711.dot │ │ │ ├── a00711.md5 │ │ │ ├── a00712.html │ │ │ ├── a00713.dot │ │ │ ├── a00713.md5 │ │ │ ├── a00714.dot │ │ │ ├── a00714.md5 │ │ │ ├── a00715.html │ │ │ ├── a00716.html │ │ │ ├── a00717.html │ │ │ ├── a00718.html │ │ │ ├── a00719.html │ │ │ ├── a00720.dot │ │ │ ├── a00720.md5 │ │ │ ├── a00721.html │ │ │ ├── a00722.html │ │ │ ├── a00723.html │ │ │ ├── a00724.html │ │ │ ├── a00725.html │ │ │ ├── a00726.dot │ │ │ ├── a00726.md5 │ │ │ ├── a00727.html │ │ │ ├── a00728.dot │ │ │ ├── a00728.md5 │ │ │ ├── a00729.dot │ │ │ ├── a00729.md5 │ │ │ ├── a00730.html │ │ │ ├── a00731.dot │ │ │ ├── a00731.md5 │ │ │ ├── a00732.dot │ │ │ ├── a00732.md5 │ │ │ ├── a00733.html │ │ │ ├── a00734.dot │ │ │ ├── a00734.md5 │ │ │ ├── a00735.dot │ │ │ ├── a00735.md5 │ │ │ ├── a00736.html │ │ │ ├── a00737.dot │ │ │ ├── a00737.md5 │ │ │ ├── a00738.dot │ │ │ ├── a00738.md5 │ │ │ ├── a00739.html │ │ │ ├── a00740.dot │ │ │ ├── a00740.md5 │ │ │ ├── a00741.dot │ │ │ ├── a00741.md5 │ │ │ ├── a00742.html │ │ │ ├── a00743.dot │ │ │ ├── a00743.md5 │ │ │ ├── a00744.dot │ │ │ ├── a00744.md5 │ │ │ ├── a00745.html │ │ │ ├── a00746.dot │ │ │ ├── a00746.md5 │ │ │ ├── a00747.dot │ │ │ ├── a00747.md5 │ │ │ ├── a00748.html │ │ │ ├── a00749.dot │ │ │ ├── a00749.md5 │ │ │ ├── a00750.dot │ │ │ ├── a00750.md5 │ │ │ ├── a00751.html │ │ │ ├── a00752.dot │ │ │ ├── a00752.md5 │ │ │ ├── a00753.dot │ │ │ ├── a00753.md5 │ │ │ ├── a00754.html │ │ │ ├── a00755.dot │ │ │ ├── a00755.md5 │ │ │ ├── a00756.dot │ │ │ ├── a00756.md5 │ │ │ ├── a00757.html │ │ │ ├── a00758.dot │ │ │ ├── a00758.md5 │ │ │ ├── a00759.dot │ │ │ ├── a00759.md5 │ │ │ ├── a00760.html │ │ │ ├── a00761.dot │ │ │ ├── a00761.md5 │ │ │ ├── a00762.dot │ │ │ ├── a00762.md5 │ │ │ ├── a00763.html │ │ │ ├── a00764.dot │ │ │ ├── a00764.md5 │ │ │ ├── a00765.dot │ │ │ ├── a00765.md5 │ │ │ ├── a00766.html │ │ │ ├── a00767.dot │ │ │ ├── a00767.md5 │ │ │ ├── a00768.dot │ │ │ ├── a00768.md5 │ │ │ ├── a00769.html │ │ │ ├── a00770.dot │ │ │ ├── a00770.md5 │ │ │ ├── a00771.dot │ │ │ ├── a00771.md5 │ │ │ ├── a00772.html │ │ │ ├── a00773.dot │ │ │ ├── a00773.md5 │ │ │ ├── a00774.dot │ │ │ ├── a00774.md5 │ │ │ ├── a00775.html │ │ │ ├── a00776.dot │ │ │ ├── a00776.md5 │ │ │ ├── a00777.html │ │ │ ├── a00778.dot │ │ │ ├── a00778.md5 │ │ │ ├── a00779.html │ │ │ ├── a00780.dot │ │ │ ├── a00780.md5 │ │ │ ├── a00781.dot │ │ │ ├── a00781.md5 │ │ │ ├── a00782.html │ │ │ ├── a00783.dot │ │ │ ├── a00783.md5 │ │ │ ├── a00784.dot │ │ │ ├── a00784.md5 │ │ │ ├── a00785.html │ │ │ ├── a00786.dot │ │ │ ├── a00786.md5 │ │ │ ├── a00787.dot │ │ │ ├── a00787.md5 │ │ │ ├── a00788.html │ │ │ ├── a00789.dot │ │ │ ├── a00789.md5 │ │ │ ├── a00790.dot │ │ │ ├── a00790.md5 │ │ │ ├── a00791.html │ │ │ ├── a00792.dot │ │ │ ├── a00792.md5 │ │ │ ├── a00793.dot │ │ │ ├── a00793.md5 │ │ │ ├── a00794.html │ │ │ ├── a00795.dot │ │ │ ├── a00795.md5 │ │ │ ├── a00796.dot │ │ │ ├── a00796.md5 │ │ │ ├── a00797.html │ │ │ ├── a00798.dot │ │ │ ├── a00798.md5 │ │ │ ├── a00799.dot │ │ │ ├── a00799.md5 │ │ │ ├── a00800.html │ │ │ ├── a00801.dot │ │ │ ├── a00801.md5 │ │ │ ├── a00802.dot │ │ │ ├── a00802.md5 │ │ │ ├── a00803.html │ │ │ ├── a00804.dot │ │ │ ├── a00804.md5 │ │ │ ├── a00805.dot │ │ │ ├── a00805.md5 │ │ │ ├── a00806.html │ │ │ ├── a00807.dot │ │ │ ├── a00807.md5 │ │ │ ├── a00808.dot │ │ │ ├── a00808.md5 │ │ │ ├── a00809.html │ │ │ ├── a00810.dot │ │ │ ├── a00810.md5 │ │ │ ├── a00811.dot │ │ │ ├── a00811.md5 │ │ │ ├── a00812.html │ │ │ ├── a00813.dot │ │ │ ├── a00813.md5 │ │ │ ├── a00814.dot │ │ │ ├── a00814.md5 │ │ │ ├── a00815.html │ │ │ ├── a00816.dot │ │ │ ├── a00816.md5 │ │ │ ├── a00817.dot │ │ │ ├── a00817.md5 │ │ │ ├── a00818.html │ │ │ ├── a00819.dot │ │ │ ├── a00819.md5 │ │ │ ├── a00820.dot │ │ │ ├── a00820.md5 │ │ │ ├── a00821.html │ │ │ ├── a00822.dot │ │ │ ├── a00822.md5 │ │ │ ├── a00823.dot │ │ │ ├── a00823.md5 │ │ │ ├── a00824.html │ │ │ ├── a00825.dot │ │ │ ├── a00825.md5 │ │ │ ├── a00826.dot │ │ │ ├── a00826.md5 │ │ │ ├── a00827.html │ │ │ ├── a00828.dot │ │ │ ├── a00828.md5 │ │ │ ├── a00829.dot │ │ │ ├── a00829.md5 │ │ │ ├── a00830.html │ │ │ ├── a00831.dot │ │ │ ├── a00831.md5 │ │ │ ├── a00832.dot │ │ │ ├── a00832.md5 │ │ │ ├── a00833.html │ │ │ ├── a00834.dot │ │ │ ├── a00834.md5 │ │ │ ├── a00835.dot │ │ │ ├── a00835.md5 │ │ │ ├── a00836.html │ │ │ ├── a00837.dot │ │ │ ├── a00837.md5 │ │ │ ├── a00838.dot │ │ │ ├── a00838.md5 │ │ │ ├── a00839.html │ │ │ ├── a00840.dot │ │ │ ├── a00840.md5 │ │ │ ├── a00841.dot │ │ │ ├── a00841.md5 │ │ │ ├── a00842.html │ │ │ ├── a00843.dot │ │ │ ├── a00843.md5 │ │ │ ├── a00844.dot │ │ │ ├── a00844.md5 │ │ │ ├── a00845.html │ │ │ ├── a00846.dot │ │ │ ├── a00846.md5 │ │ │ ├── a00847.dot │ │ │ ├── a00847.md5 │ │ │ ├── a00848.html │ │ │ ├── a00849.dot │ │ │ ├── a00849.md5 │ │ │ ├── a00850.dot │ │ │ ├── a00850.md5 │ │ │ ├── a00851.html │ │ │ ├── a00852.dot │ │ │ ├── a00852.md5 │ │ │ ├── a00853.dot │ │ │ ├── a00853.md5 │ │ │ ├── a00854.html │ │ │ ├── a00855.dot │ │ │ ├── a00855.md5 │ │ │ ├── a00856.dot │ │ │ ├── a00856.md5 │ │ │ ├── a00857.html │ │ │ ├── a00858.dot │ │ │ ├── a00858.md5 │ │ │ ├── a00859.dot │ │ │ ├── a00859.md5 │ │ │ ├── a00860.html │ │ │ ├── a00861.dot │ │ │ ├── a00861.md5 │ │ │ ├── a00862.dot │ │ │ ├── a00862.md5 │ │ │ ├── a00863.html │ │ │ ├── a00864.dot │ │ │ ├── a00864.md5 │ │ │ ├── a00865.dot │ │ │ ├── a00865.md5 │ │ │ ├── a00866.html │ │ │ ├── a00867.dot │ │ │ ├── a00867.md5 │ │ │ ├── a00868.dot │ │ │ ├── a00868.md5 │ │ │ ├── a00869.html │ │ │ ├── a00870.dot │ │ │ ├── a00870.md5 │ │ │ ├── a00871.dot │ │ │ ├── a00871.md5 │ │ │ ├── a00872.html │ │ │ ├── a00873.dot │ │ │ ├── a00873.md5 │ │ │ ├── a00874.dot │ │ │ ├── a00874.md5 │ │ │ ├── a00875.html │ │ │ ├── a00876.dot │ │ │ ├── a00876.md5 │ │ │ ├── a00877.dot │ │ │ ├── a00877.md5 │ │ │ ├── a00878.html │ │ │ ├── a00879.html │ │ │ ├── a00880.html │ │ │ ├── a00881.dot │ │ │ ├── a00881.md5 │ │ │ ├── a00882.html │ │ │ ├── a00883.html │ │ │ ├── a00884.html │ │ │ ├── a00885.dot │ │ │ ├── a00885.md5 │ │ │ ├── a00886.dot │ │ │ ├── a00886.md5 │ │ │ ├── a00887.html │ │ │ ├── a00888.html │ │ │ ├── a00889.dot │ │ │ ├── a00889.md5 │ │ │ ├── a00890.html │ │ │ ├── a00891.html │ │ │ ├── a00892.dot │ │ │ ├── a00892.md5 │ │ │ ├── a00893.dot │ │ │ ├── a00893.md5 │ │ │ ├── a00894.html │ │ │ ├── a00895.html │ │ │ ├── a00896.html │ │ │ ├── a00897.html │ │ │ ├── a00898.html │ │ │ ├── a00899.html │ │ │ ├── a00900.dot │ │ │ ├── a00900.md5 │ │ │ ├── a00901.html │ │ │ ├── a00902.html │ │ │ ├── a00903.html │ │ │ ├── a00904.html │ │ │ ├── a00905.html │ │ │ ├── a00906.dot │ │ │ ├── a00906.md5 │ │ │ ├── a00907.dot │ │ │ ├── a00907.md5 │ │ │ ├── a00908.html │ │ │ ├── a00909.html │ │ │ ├── a00910.html │ │ │ ├── a00911.html │ │ │ ├── a00912.html │ │ │ ├── a00913.html │ │ │ ├── a00914.html │ │ │ ├── a00915.html │ │ │ ├── a00916.dot │ │ │ ├── a00916.md5 │ │ │ ├── a00917.dot │ │ │ ├── a00917.md5 │ │ │ ├── a00918.dot │ │ │ ├── a00918.md5 │ │ │ ├── a00919.dot │ │ │ ├── a00919.md5 │ │ │ ├── a00920.html │ │ │ ├── a00921.dot │ │ │ ├── a00921.md5 │ │ │ ├── a00922.html │ │ │ ├── a00923.dot │ │ │ ├── a00923.md5 │ │ │ ├── a00924.dot │ │ │ ├── a00924.md5 │ │ │ ├── a00925.html │ │ │ ├── a00926.dot │ │ │ ├── a00926.md5 │ │ │ ├── a00927.dot │ │ │ ├── a00927.md5 │ │ │ ├── a00928.html │ │ │ ├── a00929.dot │ │ │ ├── a00929.md5 │ │ │ ├── a00930.dot │ │ │ ├── a00930.md5 │ │ │ ├── a00931.html │ │ │ ├── a00932.dot │ │ │ ├── a00932.md5 │ │ │ ├── a00933.dot │ │ │ ├── a00933.md5 │ │ │ ├── a00934.html │ │ │ ├── a00935.dot │ │ │ ├── a00935.md5 │ │ │ ├── a00936.dot │ │ │ ├── a00936.md5 │ │ │ ├── a00937.html │ │ │ ├── a00938.dot │ │ │ ├── a00938.md5 │ │ │ ├── a00939.dot │ │ │ ├── a00939.md5 │ │ │ ├── a00940.html │ │ │ ├── a00941.dot │ │ │ ├── a00941.md5 │ │ │ ├── a00942.dot │ │ │ ├── a00942.md5 │ │ │ ├── a00943.html │ │ │ ├── a00944.dot │ │ │ ├── a00944.md5 │ │ │ ├── a00945.dot │ │ │ ├── a00945.md5 │ │ │ ├── a00946.html │ │ │ ├── a00947.dot │ │ │ ├── a00947.md5 │ │ │ ├── a00948.dot │ │ │ ├── a00948.md5 │ │ │ ├── a00949.html │ │ │ ├── a00950.dot │ │ │ ├── a00950.md5 │ │ │ ├── a00951.dot │ │ │ ├── a00951.md5 │ │ │ ├── a00952.html │ │ │ ├── a00953.html │ │ │ ├── a00954.html │ │ │ ├── a00955.html │ │ │ ├── a00956.html │ │ │ ├── a00957.html │ │ │ ├── a00958.html │ │ │ ├── a00959.html │ │ │ ├── a00960.html │ │ │ ├── a00961.html │ │ │ ├── a00962.html │ │ │ ├── a00963.html │ │ │ ├── a00964.html │ │ │ ├── a00965.html │ │ │ ├── a00966.html │ │ │ ├── a00967.html │ │ │ ├── a00968.html │ │ │ ├── a00969.dot │ │ │ ├── a00969.md5 │ │ │ ├── a00970.dot │ │ │ ├── a00970.md5 │ │ │ ├── a00971.html │ │ │ ├── a00972.dot │ │ │ ├── a00972.md5 │ │ │ ├── a00973.dot │ │ │ ├── a00973.md5 │ │ │ ├── a00974.html │ │ │ ├── a00975.dot │ │ │ ├── a00975.md5 │ │ │ ├── a00976.html │ │ │ ├── a00977.dot │ │ │ ├── a00977.md5 │ │ │ ├── a00978.dot │ │ │ ├── a00978.md5 │ │ │ ├── a00979.html │ │ │ ├── a00980.dot │ │ │ ├── a00980.md5 │ │ │ ├── a00981.dot │ │ │ ├── a00981.md5 │ │ │ ├── a00982.html │ │ │ ├── a00983.html │ │ │ ├── a00984.html │ │ │ ├── a00985.html │ │ │ ├── a00986.html │ │ │ ├── a00987.html │ │ │ ├── a00988.html │ │ │ ├── a00989.html │ │ │ ├── a00990.html │ │ │ ├── a00991.html │ │ │ ├── a00992.dot │ │ │ ├── a00992.md5 │ │ │ ├── a00993.dot │ │ │ ├── a00993.md5 │ │ │ ├── a00994.html │ │ │ ├── a00995.html │ │ │ ├── a00996.html │ │ │ ├── a00997.html │ │ │ ├── a00998.html │ │ │ ├── a00999.html │ │ │ ├── a01000.html │ │ │ ├── a01001.html │ │ │ ├── a01002.html │ │ │ ├── a01003.html │ │ │ ├── a01004.html │ │ │ ├── a01005.html │ │ │ ├── a01006.html │ │ │ ├── a01007.html │ │ │ ├── a01008.dot │ │ │ ├── a01008.md5 │ │ │ ├── a01009.html │ │ │ ├── a01010.html │ │ │ ├── a01011.html │ │ │ ├── a01012.html │ │ │ ├── a01013.html │ │ │ ├── a01014.html │ │ │ ├── a01015.html │ │ │ ├── a01016.html │ │ │ ├── a01017.html │ │ │ ├── a01018.dot │ │ │ ├── a01018.md5 │ │ │ ├── a01019.html │ │ │ ├── a01020.dot │ │ │ ├── a01020.md5 │ │ │ ├── a01021.html │ │ │ ├── a01022.html │ │ │ ├── a01023.html │ │ │ ├── a01024.html │ │ │ ├── a01025.html │ │ │ ├── a01026.html │ │ │ ├── a01027.html │ │ │ ├── a01028.html │ │ │ ├── a01029.html │ │ │ ├── a01030.html │ │ │ ├── a01031.html │ │ │ ├── a01032.html │ │ │ ├── a01033.html │ │ │ ├── a01034.html │ │ │ ├── a01035.html │ │ │ ├── a01036.html │ │ │ ├── a01037.html │ │ │ ├── a01038.html │ │ │ ├── a01039.html │ │ │ ├── a01040.html │ │ │ ├── a01041.html │ │ │ ├── a01042.html │ │ │ ├── a01043.html │ │ │ ├── a01044.html │ │ │ ├── a01045.html │ │ │ ├── a01046.html │ │ │ ├── a01047.html │ │ │ ├── a01048.html │ │ │ ├── a01049.html │ │ │ ├── a01050.html │ │ │ ├── a01051.html │ │ │ ├── a01052.html │ │ │ ├── a01053.dot │ │ │ ├── a01053.md5 │ │ │ ├── a01054.dot │ │ │ ├── a01054.md5 │ │ │ ├── a01055.html │ │ │ ├── a01056.dot │ │ │ ├── a01056.md5 │ │ │ ├── a01057.dot │ │ │ ├── a01057.md5 │ │ │ ├── a01058.html │ │ │ ├── a01059.dot │ │ │ ├── a01059.md5 │ │ │ ├── a01060.dot │ │ │ ├── a01060.md5 │ │ │ ├── a01061.html │ │ │ ├── a01062.dot │ │ │ ├── a01062.md5 │ │ │ ├── a01063.dot │ │ │ ├── a01063.md5 │ │ │ ├── a01064.html │ │ │ ├── a01065.dot │ │ │ ├── a01065.md5 │ │ │ ├── a01066.dot │ │ │ ├── a01066.md5 │ │ │ ├── a01067.html │ │ │ ├── a01068.dot │ │ │ ├── a01068.md5 │ │ │ ├── a01069.dot │ │ │ ├── a01069.md5 │ │ │ ├── a01070.html │ │ │ ├── a01071.html │ │ │ ├── a01072.html │ │ │ ├── a01073.html │ │ │ ├── a01074.dot │ │ │ ├── a01074.md5 │ │ │ ├── a01075.dot │ │ │ ├── a01075.md5 │ │ │ ├── a01076.html │ │ │ ├── a01077.html │ │ │ ├── a01078.dot │ │ │ ├── a01078.md5 │ │ │ ├── a01079.html │ │ │ ├── a01080.dot │ │ │ ├── a01080.md5 │ │ │ ├── a01081.dot │ │ │ ├── a01081.md5 │ │ │ ├── a01082.dot │ │ │ ├── a01082.md5 │ │ │ ├── a01083.dot │ │ │ ├── a01083.md5 │ │ │ ├── a01084.html │ │ │ ├── a01085.dot │ │ │ ├── a01085.md5 │ │ │ ├── a01086.dot │ │ │ ├── a01086.md5 │ │ │ ├── a01087.html │ │ │ ├── a01088.dot │ │ │ ├── a01088.md5 │ │ │ ├── a01089.dot │ │ │ ├── a01089.md5 │ │ │ ├── a01090.html │ │ │ ├── a01091.dot │ │ │ ├── a01091.md5 │ │ │ ├── a01092.dot │ │ │ ├── a01092.md5 │ │ │ ├── a01093.html │ │ │ ├── a01094.dot │ │ │ ├── a01094.md5 │ │ │ ├── a01095.dot │ │ │ ├── a01095.md5 │ │ │ ├── a01096.html │ │ │ ├── a01097.dot │ │ │ ├── a01097.md5 │ │ │ ├── a01098.dot │ │ │ ├── a01098.md5 │ │ │ ├── a01099.html │ │ │ ├── a01100.dot │ │ │ ├── a01100.md5 │ │ │ ├── a01101.dot │ │ │ ├── a01101.md5 │ │ │ ├── a01102.html │ │ │ ├── a01103.dot │ │ │ ├── a01103.md5 │ │ │ ├── a01104.dot │ │ │ ├── a01104.md5 │ │ │ ├── a01105.html │ │ │ ├── a01106.dot │ │ │ ├── a01106.md5 │ │ │ ├── a01107.dot │ │ │ ├── a01107.md5 │ │ │ ├── a01108.html │ │ │ ├── a01109.dot │ │ │ ├── a01109.md5 │ │ │ ├── a01110.dot │ │ │ ├── a01110.md5 │ │ │ ├── a01111.html │ │ │ ├── a01112.dot │ │ │ ├── a01112.md5 │ │ │ ├── a01113.dot │ │ │ ├── a01113.md5 │ │ │ ├── a01114.html │ │ │ ├── a01115.dot │ │ │ ├── a01115.md5 │ │ │ ├── a01116.dot │ │ │ ├── a01116.md5 │ │ │ ├── a01117.html │ │ │ ├── a01118.dot │ │ │ ├── a01118.md5 │ │ │ ├── a01119.dot │ │ │ ├── a01119.md5 │ │ │ ├── a01120.html │ │ │ ├── a01121.dot │ │ │ ├── a01121.md5 │ │ │ ├── a01122.dot │ │ │ ├── a01122.md5 │ │ │ ├── a01123.html │ │ │ ├── a01124.dot │ │ │ ├── a01124.md5 │ │ │ ├── a01125.dot │ │ │ ├── a01125.md5 │ │ │ ├── a01126.html │ │ │ ├── a01127.dot │ │ │ ├── a01127.md5 │ │ │ ├── a01128.dot │ │ │ ├── a01128.md5 │ │ │ ├── a01129.html │ │ │ ├── a01130.dot │ │ │ ├── a01130.md5 │ │ │ ├── a01131.dot │ │ │ ├── a01131.md5 │ │ │ ├── a01132.html │ │ │ ├── a01133.dot │ │ │ ├── a01133.md5 │ │ │ ├── a01134.dot │ │ │ ├── a01134.md5 │ │ │ ├── a01135.html │ │ │ ├── a01136.dot │ │ │ ├── a01136.md5 │ │ │ ├── a01137.dot │ │ │ ├── a01137.md5 │ │ │ ├── a01138.html │ │ │ ├── a01139.dot │ │ │ ├── a01139.md5 │ │ │ ├── a01140.dot │ │ │ ├── a01140.md5 │ │ │ ├── a01141.html │ │ │ ├── a01142.dot │ │ │ ├── a01142.md5 │ │ │ ├── a01143.dot │ │ │ ├── a01143.md5 │ │ │ ├── a01144.html │ │ │ ├── a01145.dot │ │ │ ├── a01145.md5 │ │ │ ├── a01146.dot │ │ │ ├── a01146.md5 │ │ │ ├── a01147.html │ │ │ ├── a01148.dot │ │ │ ├── a01148.md5 │ │ │ ├── a01149.dot │ │ │ ├── a01149.md5 │ │ │ ├── a01150.html │ │ │ ├── a01151.dot │ │ │ ├── a01151.md5 │ │ │ ├── a01152.dot │ │ │ ├── a01152.md5 │ │ │ ├── a01153.html │ │ │ ├── a01154.dot │ │ │ ├── a01154.md5 │ │ │ ├── a01155.dot │ │ │ ├── a01155.md5 │ │ │ ├── a01156.html │ │ │ ├── a01157.dot │ │ │ ├── a01157.md5 │ │ │ ├── a01158.dot │ │ │ ├── a01158.md5 │ │ │ ├── a01159.html │ │ │ ├── a01160.dot │ │ │ ├── a01160.md5 │ │ │ ├── a01161.dot │ │ │ ├── a01161.md5 │ │ │ ├── a01162.html │ │ │ ├── a01163.dot │ │ │ ├── a01163.md5 │ │ │ ├── a01164.dot │ │ │ ├── a01164.md5 │ │ │ ├── a01165.html │ │ │ ├── a01166.dot │ │ │ ├── a01166.md5 │ │ │ ├── a01167.dot │ │ │ ├── a01167.md5 │ │ │ ├── a01168.html │ │ │ ├── a01169.dot │ │ │ ├── a01169.md5 │ │ │ ├── a01170.dot │ │ │ ├── a01170.md5 │ │ │ ├── a01171.html │ │ │ ├── a01172.dot │ │ │ ├── a01172.md5 │ │ │ ├── a01173.dot │ │ │ ├── a01173.md5 │ │ │ ├── a01174.html │ │ │ ├── a01175.dot │ │ │ ├── a01175.md5 │ │ │ ├── a01176.dot │ │ │ ├── a01176.md5 │ │ │ ├── a01177.html │ │ │ ├── a01178.dot │ │ │ ├── a01178.md5 │ │ │ ├── a01179.html │ │ │ ├── a01180.dot │ │ │ ├── a01180.md5 │ │ │ ├── a01181.dot │ │ │ ├── a01181.md5 │ │ │ ├── a01182.dot │ │ │ ├── a01182.md5 │ │ │ ├── a01183.dot │ │ │ ├── a01183.md5 │ │ │ ├── a01184.dot │ │ │ ├── a01184.md5 │ │ │ ├── a01185.dot │ │ │ ├── a01185.md5 │ │ │ ├── a01186.dot │ │ │ ├── a01186.md5 │ │ │ ├── a01187.dot │ │ │ ├── a01187.md5 │ │ │ ├── a01188.dot │ │ │ ├── a01188.md5 │ │ │ ├── a01189.dot │ │ │ ├── a01189.md5 │ │ │ ├── a01190.dot │ │ │ ├── a01190.md5 │ │ │ ├── a01191.html │ │ │ ├── a01192.dot │ │ │ ├── a01192.md5 │ │ │ ├── a01193.dot │ │ │ ├── a01193.md5 │ │ │ ├── a01194.html │ │ │ ├── a01195.html │ │ │ ├── a01196.html │ │ │ ├── a01197.html │ │ │ ├── a01198.html │ │ │ ├── a01199.html │ │ │ ├── a01200.html │ │ │ ├── a01201.dot │ │ │ ├── a01201.md5 │ │ │ ├── a01202.html │ │ │ ├── a01203.dot │ │ │ ├── a01203.md5 │ │ │ ├── a01204.dot │ │ │ ├── a01204.md5 │ │ │ ├── a01205.html │ │ │ ├── a01206.html │ │ │ ├── a01207.html │ │ │ ├── a01208.html │ │ │ ├── a01209.html │ │ │ ├── a01210.html │ │ │ ├── a01211.dot │ │ │ ├── a01211.md5 │ │ │ ├── a01212.html │ │ │ ├── a01213.html │ │ │ ├── a01214.dot │ │ │ ├── a01214.md5 │ │ │ ├── a01215.dot │ │ │ ├── a01215.md5 │ │ │ ├── a01216.html │ │ │ ├── a01217.html │ │ │ ├── a01218.dot │ │ │ ├── a01218.md5 │ │ │ ├── a01219.dot │ │ │ ├── a01219.md5 │ │ │ ├── a01220.html │ │ │ ├── a01221.html │ │ │ ├── a01222.html │ │ │ ├── a01223.html │ │ │ ├── a01224.html │ │ │ ├── a01225.html │ │ │ ├── a01226.html │ │ │ ├── a01227.html │ │ │ ├── a01228.html │ │ │ ├── a01229.html │ │ │ ├── a01230.html │ │ │ ├── a01231.html │ │ │ ├── a01232.html │ │ │ ├── a01233.html │ │ │ ├── a01234.html │ │ │ ├── a01235.html │ │ │ ├── a01236.html │ │ │ ├── a01237.html │ │ │ ├── a01238.html │ │ │ ├── a01239.html │ │ │ ├── a01240.html │ │ │ ├── a01241.html │ │ │ ├── a01242.html │ │ │ ├── a01243.html │ │ │ ├── a01244.html │ │ │ ├── a01245.html │ │ │ ├── a01246.html │ │ │ ├── a01247.html │ │ │ ├── a01248.html │ │ │ ├── a01249.html │ │ │ ├── a01250.html │ │ │ ├── a01251.html │ │ │ ├── a01252.html │ │ │ ├── a01253.html │ │ │ ├── a01254.html │ │ │ ├── a01255.html │ │ │ ├── a01256.html │ │ │ ├── a01257.html │ │ │ ├── a01258.html │ │ │ ├── a01259.html │ │ │ ├── a01260.html │ │ │ ├── a01261.html │ │ │ ├── a01262.html │ │ │ ├── a01263.html │ │ │ ├── a01264.html │ │ │ ├── a01265.html │ │ │ ├── a01266.html │ │ │ ├── a01267.html │ │ │ ├── a01268.html │ │ │ ├── a01269.html │ │ │ ├── a01270.html │ │ │ ├── a01271.html │ │ │ ├── a01272.html │ │ │ ├── a01273.html │ │ │ ├── a01274.html │ │ │ ├── a01275.html │ │ │ ├── a01276.html │ │ │ ├── a01277.html │ │ │ ├── a01278.html │ │ │ ├── a01279.html │ │ │ ├── a01280.html │ │ │ ├── a01281.html │ │ │ ├── a01282.html │ │ │ ├── a01283.html │ │ │ ├── a01284.html │ │ │ ├── a01285.html │ │ │ ├── a01286.html │ │ │ ├── a01287.html │ │ │ ├── a01288.html │ │ │ ├── a01289.html │ │ │ ├── a01290.html │ │ │ ├── a01291.html │ │ │ ├── a01292.html │ │ │ ├── a01293.html │ │ │ ├── a01294.html │ │ │ ├── a01295.html │ │ │ ├── a01296.html │ │ │ ├── a01297.html │ │ │ ├── a01298.html │ │ │ ├── a01299.html │ │ │ ├── a01300.html │ │ │ ├── a01301.html │ │ │ ├── a01302.html │ │ │ ├── a01303.html │ │ │ ├── a01304.html │ │ │ ├── a01305.html │ │ │ ├── a01306.html │ │ │ ├── a01307.html │ │ │ ├── a01308.html │ │ │ ├── a01309.html │ │ │ ├── a01310.html │ │ │ ├── a01311.html │ │ │ ├── a01312.html │ │ │ ├── a01313.html │ │ │ ├── a01314.html │ │ │ ├── a01315.html │ │ │ ├── a01316.html │ │ │ ├── a01317.html │ │ │ ├── a01318.html │ │ │ ├── a01319.html │ │ │ ├── a01320.html │ │ │ ├── a01321.html │ │ │ ├── a01322.html │ │ │ ├── a01323.html │ │ │ ├── a01324.html │ │ │ ├── a01325.html │ │ │ ├── a01326.html │ │ │ ├── a01327.html │ │ │ ├── a01328.html │ │ │ ├── a01329.html │ │ │ ├── a01330.html │ │ │ ├── a01331.html │ │ │ ├── a01332.html │ │ │ ├── a01333.html │ │ │ ├── a01334.html │ │ │ ├── a01335.html │ │ │ ├── a01336.html │ │ │ ├── a01337.html │ │ │ ├── a01338.html │ │ │ ├── a01339.html │ │ │ ├── a01340.html │ │ │ ├── a01341.html │ │ │ ├── a01342.html │ │ │ ├── a01343.html │ │ │ ├── a01344.html │ │ │ ├── a01345.html │ │ │ ├── a01346.html │ │ │ ├── a01347.html │ │ │ ├── a01348.html │ │ │ ├── a01349.html │ │ │ ├── a01350.html │ │ │ ├── a01351.html │ │ │ ├── a01352.html │ │ │ ├── a01353.html │ │ │ ├── a01354.html │ │ │ ├── a01355.html │ │ │ ├── a01356.html │ │ │ ├── a01357.html │ │ │ ├── a01358.html │ │ │ ├── a01359.html │ │ │ ├── a01360.html │ │ │ ├── a01361.html │ │ │ ├── a01362.html │ │ │ ├── a01363.html │ │ │ ├── a01364.html │ │ │ ├── a01365.html │ │ │ ├── a01366.html │ │ │ ├── a01367.html │ │ │ ├── a01368.html │ │ │ ├── a01369.html │ │ │ ├── a01370.html │ │ │ ├── a01371.html │ │ │ ├── a01372.html │ │ │ ├── a01373.html │ │ │ ├── a01374.html │ │ │ ├── a01375.html │ │ │ ├── a01376.html │ │ │ ├── a01377.html │ │ │ ├── a01378.html │ │ │ ├── a01379.html │ │ │ ├── a01380.html │ │ │ ├── a01381.html │ │ │ ├── a01382.html │ │ │ ├── a01383.html │ │ │ ├── a01384.html │ │ │ ├── a01385.html │ │ │ ├── a01386.html │ │ │ ├── a01387.html │ │ │ ├── a01388.html │ │ │ ├── a01389.html │ │ │ ├── a01390.html │ │ │ ├── a01391.html │ │ │ ├── a01392.html │ │ │ ├── a01393.html │ │ │ ├── a01394.html │ │ │ ├── a01395.html │ │ │ ├── a01396.html │ │ │ ├── a01397.html │ │ │ ├── a01398.html │ │ │ ├── a01399.html │ │ │ ├── a01400.html │ │ │ ├── a01401.html │ │ │ ├── a01402.html │ │ │ ├── a01403.html │ │ │ ├── a01404.html │ │ │ ├── a01405.html │ │ │ ├── a01406.html │ │ │ ├── a01407.html │ │ │ ├── a01408.html │ │ │ ├── a01409.html │ │ │ ├── a01410.html │ │ │ ├── a01411.html │ │ │ ├── a01412.html │ │ │ ├── a01413.html │ │ │ ├── a01414.html │ │ │ ├── a01415.html │ │ │ ├── a01416.html │ │ │ ├── a01417.html │ │ │ ├── a01418.html │ │ │ ├── a01419.html │ │ │ ├── a01420.html │ │ │ ├── a01421.html │ │ │ ├── a01422.html │ │ │ ├── a01423.html │ │ │ ├── a01424.html │ │ │ ├── a01425.html │ │ │ ├── a01426.html │ │ │ ├── a01427.html │ │ │ ├── a01428.html │ │ │ ├── a01429.html │ │ │ ├── a01430.html │ │ │ ├── a01431.html │ │ │ ├── a01432.html │ │ │ ├── a01433.html │ │ │ ├── a01434.html │ │ │ ├── a01435.html │ │ │ ├── a01436.html │ │ │ ├── a01437.html │ │ │ ├── a01438.html │ │ │ ├── a01439.html │ │ │ ├── a01440.html │ │ │ ├── a01441.html │ │ │ ├── a01442.html │ │ │ ├── a01443.html │ │ │ ├── a01444.html │ │ │ ├── a01445.html │ │ │ ├── a01446.dot │ │ │ ├── a01446.md5 │ │ │ ├── a01447.html │ │ │ ├── a01448.html │ │ │ ├── a01449.html │ │ │ ├── a01450.html │ │ │ ├── a01451.html │ │ │ ├── a01452.html │ │ │ ├── a01453.html │ │ │ ├── a01454.html │ │ │ ├── a01455.html │ │ │ ├── a01456.html │ │ │ ├── a01457.html │ │ │ ├── a01458.html │ │ │ ├── a01459.html │ │ │ ├── a01460.html │ │ │ ├── a01461.html │ │ │ ├── a01462.html │ │ │ ├── a01463.html │ │ │ ├── a01464.html │ │ │ ├── a01465.html │ │ │ ├── a01466.html │ │ │ ├── a01467.html │ │ │ ├── a01468.html │ │ │ ├── a01469.html │ │ │ ├── a01470.html │ │ │ ├── a01471.html │ │ │ ├── a01472.html │ │ │ ├── a01473.html │ │ │ ├── a01474.html │ │ │ ├── a01475.html │ │ │ ├── a01476.html │ │ │ ├── a01477.html │ │ │ ├── a01478.html │ │ │ ├── a01479.html │ │ │ ├── a01480.html │ │ │ ├── a01481.html │ │ │ ├── a01482.html │ │ │ ├── a01483.html │ │ │ ├── a01484.html │ │ │ ├── a01485.html │ │ │ ├── a01486.html │ │ │ ├── a01487.html │ │ │ ├── annotated.html │ │ │ ├── classes.html │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── files.html │ │ │ ├── ftv2blank.png │ │ │ ├── ftv2doc.png │ │ │ ├── ftv2folderclosed.png │ │ │ ├── ftv2folderopen.png │ │ │ ├── ftv2lastnode.png │ │ │ ├── ftv2link.png │ │ │ ├── ftv2mlastnode.png │ │ │ ├── ftv2mnode.png │ │ │ ├── ftv2node.png │ │ │ ├── ftv2plastnode.png │ │ │ ├── ftv2pnode.png │ │ │ ├── ftv2vertline.png │ │ │ ├── functions.html │ │ │ ├── functions_0x62.html │ │ │ ├── functions_0x63.html │ │ │ ├── functions_0x64.html │ │ │ ├── functions_0x65.html │ │ │ ├── functions_0x66.html │ │ │ ├── functions_0x67.html │ │ │ ├── functions_0x68.html │ │ │ ├── functions_0x69.html │ │ │ ├── functions_0x6b.html │ │ │ ├── functions_0x6c.html │ │ │ ├── functions_0x6d.html │ │ │ ├── functions_0x6e.html │ │ │ ├── functions_0x6f.html │ │ │ ├── functions_0x70.html │ │ │ ├── functions_0x72.html │ │ │ ├── functions_0x73.html │ │ │ ├── functions_0x74.html │ │ │ ├── functions_0x75.html │ │ │ ├── functions_0x76.html │ │ │ ├── functions_0x77.html │ │ │ ├── functions_0x7a.html │ │ │ ├── functions_0x7e.html │ │ │ ├── functions_func.html │ │ │ ├── functions_func_0x62.html │ │ │ ├── functions_func_0x63.html │ │ │ ├── functions_func_0x64.html │ │ │ ├── functions_func_0x65.html │ │ │ ├── functions_func_0x66.html │ │ │ ├── functions_func_0x67.html │ │ │ ├── functions_func_0x68.html │ │ │ ├── functions_func_0x69.html │ │ │ ├── functions_func_0x6b.html │ │ │ ├── functions_func_0x6c.html │ │ │ ├── functions_func_0x6d.html │ │ │ ├── functions_func_0x6e.html │ │ │ ├── functions_func_0x6f.html │ │ │ ├── functions_func_0x70.html │ │ │ ├── functions_func_0x72.html │ │ │ ├── functions_func_0x73.html │ │ │ ├── functions_func_0x74.html │ │ │ ├── functions_func_0x75.html │ │ │ ├── functions_func_0x76.html │ │ │ ├── functions_func_0x77.html │ │ │ ├── functions_func_0x7a.html │ │ │ ├── functions_func_0x7e.html │ │ │ ├── functions_rela.html │ │ │ ├── functions_type.html │ │ │ ├── functions_type_0x62.html │ │ │ ├── functions_type_0x63.html │ │ │ ├── functions_type_0x64.html │ │ │ ├── functions_type_0x65.html │ │ │ ├── functions_type_0x66.html │ │ │ ├── functions_type_0x68.html │ │ │ ├── functions_type_0x69.html │ │ │ ├── functions_type_0x6b.html │ │ │ ├── functions_type_0x6c.html │ │ │ ├── functions_type_0x6d.html │ │ │ ├── functions_type_0x6e.html │ │ │ ├── functions_type_0x6f.html │ │ │ ├── functions_type_0x70.html │ │ │ ├── functions_type_0x72.html │ │ │ ├── functions_type_0x73.html │ │ │ ├── functions_type_0x74.html │ │ │ ├── functions_type_0x75.html │ │ │ ├── functions_type_0x76.html │ │ │ ├── functions_vars.html │ │ │ ├── graph_legend.dot │ │ │ ├── graph_legend.html │ │ │ ├── hierarchy.html │ │ │ ├── index.html │ │ │ ├── inherits.html │ │ │ ├── installdox │ │ │ ├── main.html │ │ │ ├── modules.html │ │ │ ├── namespacemembers.html │ │ │ ├── namespacemembers_func.html │ │ │ ├── namespacemembers_type.html │ │ │ ├── namespaces.html │ │ │ ├── search.idx │ │ │ ├── search.php │ │ │ ├── tab_b.gif │ │ │ ├── tab_l.gif │ │ │ ├── tab_r.gif │ │ │ ├── tabs.css │ │ │ └── tree.html │ │ └── yasli │ │ │ ├── Notes.txt │ │ │ └── yasli.html │ │ ├── include │ │ ├── Makefile │ │ └── loki │ │ │ ├── AbstractFactory.h │ │ │ ├── AssocVector.h │ │ │ ├── CachedFactory.h │ │ │ ├── ConstPolicy.h │ │ │ ├── DataGenerators.h │ │ │ ├── EmptyType.h │ │ │ ├── Factory.h │ │ │ ├── Function.h │ │ │ ├── Functor.h │ │ │ ├── HierarchyGenerators.h │ │ │ ├── Key.h │ │ │ ├── LockingPtr.h │ │ │ ├── LokiExport.h │ │ │ ├── LokiTypeInfo.h │ │ │ ├── MultiMethods.h │ │ │ ├── NullType.h │ │ │ ├── OrderedStatic.h │ │ │ ├── Pimpl.h │ │ │ ├── RefToValue.h │ │ │ ├── Register.h │ │ │ ├── SPCachedFactory.h │ │ │ ├── SafeFormat.h │ │ │ ├── ScopeGuard.h │ │ │ ├── Sequence.h │ │ │ ├── Singleton.h │ │ │ ├── SmallObj.h │ │ │ ├── SmartPtr.h │ │ │ ├── StrongPtr.h │ │ │ ├── Threads.h │ │ │ ├── Tuple.h │ │ │ ├── TypeManip.h │ │ │ ├── TypeTraits.h │ │ │ ├── Typelist.h │ │ │ ├── TypelistMacros.h │ │ │ ├── Visitor.h │ │ │ ├── flex │ │ │ ├── allocatorstringstorage.h │ │ │ ├── cowstringopt.h │ │ │ ├── flex_string.h │ │ │ ├── flex_string_details.h │ │ │ ├── flex_string_shell.h │ │ │ ├── simplestringstorage.h │ │ │ ├── smallstringopt.h │ │ │ └── vectorstringstorage.h │ │ │ ├── readme.txt │ │ │ ├── static_check.h │ │ │ └── yasli │ │ │ ├── platform.h │ │ │ ├── random.h │ │ │ ├── yasli_fill_iterator.h │ │ │ ├── yasli_memory.h │ │ │ ├── yasli_protocols.h │ │ │ ├── yasli_traits.h │ │ │ └── yasli_vector.h │ │ ├── lib │ │ └── README │ │ ├── loki.spec │ │ ├── macosx │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ ├── Info.plist │ │ ├── Loki.xcodeproj │ │ │ └── project.pbxproj │ │ └── README.OSX │ │ ├── make.mingw.bat │ │ ├── make.msvc.bat │ │ ├── src │ │ ├── Library.vcproj │ │ ├── Makefile │ │ ├── OrderedStatic.cpp │ │ ├── SafeFormat.cpp │ │ ├── Singleton.cpp │ │ ├── SmallObj.cpp │ │ ├── SmartPtr.cpp │ │ ├── StrongPtr.cpp │ │ ├── make.msvc.bat │ │ └── make.msvc.dll.bat │ │ └── test │ │ ├── CachedFactory │ │ ├── CachedFactory.dev │ │ ├── CachedFactory.vcproj │ │ ├── CachedFactoryTest.cpp │ │ ├── Makefile │ │ └── make.msvc.bat │ │ ├── DeletableSingleton │ │ ├── DeletableSingleton.cpp │ │ ├── DeletableSingleton.vcproj │ │ ├── Makefile │ │ └── make.msvc.bat │ │ ├── Factory │ │ ├── Factory.cpp │ │ ├── Factory.dev │ │ ├── Factory.vcproj │ │ ├── Makefile │ │ └── make.msvc.bat │ │ ├── Function │ │ ├── Function.vcproj │ │ ├── FunctionTest.cpp │ │ ├── FunctionTest.dev │ │ ├── Makefile │ │ └── make.msvc.bat │ │ ├── LockingPtr │ │ ├── LockingPtr.vcproj │ │ ├── Makefile │ │ ├── Thread.h │ │ ├── main.cpp │ │ └── make.msvc.bat │ │ ├── Longevity │ │ ├── Longevity.vcproj │ │ ├── Makefile │ │ ├── main.cpp │ │ ├── main2.cpp │ │ └── make.msvc.bat │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── OrderedStatic │ │ ├── Makefile │ │ ├── OrderedStatic.vcproj │ │ ├── main.cpp │ │ └── make.msvc.bat │ │ ├── Pimpl │ │ ├── Makefile │ │ ├── Pimpl.vcproj │ │ ├── main.cpp │ │ ├── make.msvc.bat │ │ ├── type.h │ │ └── type2.h │ │ ├── Register │ │ ├── Makefile │ │ ├── Register.sln │ │ ├── classlist.h │ │ ├── foo.cpp │ │ ├── foo.h │ │ ├── foo.vcproj │ │ ├── main.cpp │ │ ├── main.vcproj │ │ └── make.msvc.bat │ │ ├── RegressionTest │ │ ├── AbstractFactoryTest.h │ │ ├── AssocVectorTest.h │ │ ├── DataGeneratorsTest.h │ │ ├── FactoryParmTest.h │ │ ├── FactoryTest.h │ │ ├── FunctorTest.h │ │ ├── MSVCUnitTest.sln │ │ ├── MSVCUnitTest.vcproj │ │ ├── Makefile │ │ ├── RegressionTest.dev │ │ ├── SequenceTest.h │ │ ├── SingletonTest.h │ │ ├── SmallObjectTest.h │ │ ├── SmartPtrTest.h │ │ ├── Test.cpp │ │ ├── ThreadsTest.h │ │ ├── TypeManipTest.h │ │ ├── TypeTraitsTest.h │ │ ├── TypeTraitsTest2.h │ │ ├── TypelistTest.h │ │ ├── UnitTest.h │ │ └── make.msvc.bat │ │ ├── SafeFormat │ │ ├── Makefile │ │ ├── SafeFormat.vcproj │ │ ├── main.cpp │ │ └── make.msvc.bat │ │ ├── ScopeGuard │ │ ├── Makefile │ │ ├── ScopeGuard.vcproj │ │ ├── main.cpp │ │ └── make.msvc.bat │ │ ├── Singleton │ │ ├── Dependencies.cpp │ │ ├── Makefile │ │ ├── Phoenix.cpp │ │ ├── Singleton.vcproj │ │ └── make.msvc.bat │ │ ├── SingletonDll │ │ ├── Client.vcproj │ │ ├── Makefile │ │ ├── SingletonDll.sln │ │ ├── SingletonDll.vcproj │ │ ├── client.cpp │ │ ├── foo.cpp │ │ ├── foo.h │ │ ├── foo.vcproj │ │ ├── foo_export.h │ │ ├── make.msvc.bat │ │ ├── singletondll.cpp │ │ ├── singletondll.h │ │ └── singletondll_export.h │ │ ├── SmallObj │ │ ├── CompareSmallObj.dev │ │ ├── DefaultAlloc.cpp │ │ ├── DefaultAlloc.dev │ │ ├── DefaultAlloc.vcproj │ │ ├── Makefile │ │ ├── SmallObjBench.cpp │ │ ├── SmallObjCompare.vcproj │ │ ├── SmallObjSingleton.cpp │ │ ├── SmallObjSingleton.vcproj │ │ ├── SmallSingleton.dev │ │ ├── make.msvc.bat │ │ └── timer.h │ │ ├── SmartPtr │ │ ├── LockTest.cpp │ │ ├── Makefile │ │ ├── SmartPtr.dev │ │ ├── SmartPtr.vcproj │ │ ├── base.h │ │ ├── main.cpp │ │ ├── make.msvc.bat │ │ └── strong.cpp │ │ ├── Visitor │ │ ├── Makefile │ │ ├── Visitor.vcproj │ │ ├── main.cpp │ │ └── make.msvc.bat │ │ ├── flex_string │ │ ├── Makefile │ │ ├── flex_string.vcproj │ │ ├── main.cpp │ │ └── make.msvc.bat │ │ └── make.msvc.bat ├── win32 │ ├── COPYING │ ├── COPYRIGHT │ ├── NEWS │ ├── README │ ├── README-WINDOWS │ ├── README-bench │ ├── bench.exe │ ├── benchf.exe │ ├── benchl.exe │ ├── blitz.lib │ ├── blitz │ │ ├── .cvsignore │ │ ├── CVS │ │ │ ├── Entries │ │ │ ├── Entries.Log │ │ │ ├── Repository │ │ │ └── Root │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── applics.h │ │ ├── array-impl.h │ │ ├── array-old.h │ │ ├── array.h │ │ ├── array │ │ │ ├── .cvsignore │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ └── Root │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── asexpr.h │ │ │ ├── bops.cc │ │ │ ├── cartesian.h │ │ │ ├── cgsolve.h │ │ │ ├── complex.cc │ │ │ ├── convolve.cc │ │ │ ├── convolve.h │ │ │ ├── cycle.cc │ │ │ ├── domain.h │ │ │ ├── et.h │ │ │ ├── eval.cc │ │ │ ├── expr.h │ │ │ ├── fastiter.h │ │ │ ├── funcs.h │ │ │ ├── functorExpr.h │ │ │ ├── geometry.h │ │ │ ├── indirect.h │ │ │ ├── interlace.cc │ │ │ ├── io.cc │ │ │ ├── iter.h │ │ │ ├── map.h │ │ │ ├── methods.cc │ │ │ ├── misc.cc │ │ │ ├── multi.h │ │ │ ├── newet-macros.h │ │ │ ├── newet.h │ │ │ ├── ops.cc │ │ │ ├── ops.h │ │ │ ├── reduce.cc │ │ │ ├── reduce.h │ │ │ ├── resize.cc │ │ │ ├── shape.h │ │ │ ├── slice.h │ │ │ ├── slicing.cc │ │ │ ├── stencil-et.h │ │ │ ├── stencilops.h │ │ │ ├── stencils.cc │ │ │ ├── stencils.h │ │ │ ├── storage.h │ │ │ ├── uops.cc │ │ │ ├── where.h │ │ │ └── zip.h │ │ ├── bench.cc │ │ ├── bench.h │ │ ├── benchext.cc │ │ ├── benchext.h │ │ ├── blitz.h │ │ ├── bzconfig.h │ │ ├── bzdebug.h │ │ ├── compiler.h │ │ ├── config.h.in │ │ ├── etbase.h │ │ ├── extremum.h │ │ ├── funcs.h │ │ ├── generate │ │ │ ├── .cvsignore │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ └── Root │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── arroperands.h │ │ │ ├── arroptuple.h │ │ │ ├── bzfstream.h │ │ │ ├── genarrbops.cpp │ │ │ ├── genarruops.cpp │ │ │ ├── genmatbops.cpp │ │ │ ├── genmathfunc.cpp │ │ │ ├── genmatuops.cpp │ │ │ ├── genpromote.cpp │ │ │ ├── genvecbfn.cpp │ │ │ ├── genvecbops.cpp │ │ │ ├── genvecuops.cpp │ │ │ ├── genvecwhere.cpp │ │ │ ├── operands.h │ │ │ ├── operands2.h │ │ │ ├── optuple.h │ │ │ └── optuple2.h │ │ ├── indexexpr.h │ │ ├── limits-hack.h │ │ ├── listinit.h │ │ ├── matbops.h │ │ ├── matdiag.h │ │ ├── matexpr.h │ │ ├── matgen.h │ │ ├── mathf2.h │ │ ├── mathfunc.h │ │ ├── matltri.h │ │ ├── matref.h │ │ ├── matrix.cc │ │ ├── matrix.h │ │ ├── matsymm.h │ │ ├── mattoep.h │ │ ├── matuops.h │ │ ├── matutri.h │ │ ├── memblock.cc │ │ ├── memblock.h │ │ ├── meta │ │ │ ├── .cvsignore │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ └── Root │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── dot.h │ │ │ ├── matassign.h │ │ │ ├── matmat.h │ │ │ ├── matvec.h │ │ │ ├── metaprog.h │ │ │ ├── product.h │ │ │ ├── sum.h │ │ │ └── vecassign.h │ │ ├── minmax.h │ │ ├── ms │ │ │ └── bzconfig.h │ │ ├── mstruct.h │ │ ├── numinquire.h │ │ ├── numtrait.h │ │ ├── ops.h │ │ ├── prettyprint.h │ │ ├── promote-old.h │ │ ├── promote.h │ │ ├── rand-dunif.h │ │ ├── rand-mt.h │ │ ├── rand-normal.h │ │ ├── rand-tt800.h │ │ ├── rand-uniform.h │ │ ├── random.h │ │ ├── randref.h │ │ ├── range.h │ │ ├── reduce.h │ │ ├── shapecheck.h │ │ ├── tau.h │ │ ├── timer.h │ │ ├── tiny.h │ │ ├── tinymat.h │ │ ├── tinymatexpr.h │ │ ├── tinymatio.cc │ │ ├── tinyvec-et.h │ │ ├── tinyvec.cc │ │ ├── tinyvec.h │ │ ├── tinyvecio.cc │ │ ├── tinyveciter.h │ │ ├── traversal.cc │ │ ├── traversal.h │ │ ├── tuning.h │ │ ├── tvcross.h │ │ ├── tvecglobs.h │ │ ├── update.h │ │ ├── vecaccum.cc │ │ ├── vecall.cc │ │ ├── vecany.cc │ │ ├── vecbfn.cc │ │ ├── vecbops.cc │ │ ├── veccount.cc │ │ ├── vecdelta.cc │ │ ├── vecdot.cc │ │ ├── vecexpr.h │ │ ├── vecexprwrap.h │ │ ├── vecglobs.cc │ │ ├── vecglobs.h │ │ ├── vecio.cc │ │ ├── veciter.h │ │ ├── vecmax.cc │ │ ├── vecmin.cc │ │ ├── vecnorm.cc │ │ ├── vecnorm1.cc │ │ ├── vecpick.cc │ │ ├── vecpick.h │ │ ├── vecpickio.cc │ │ ├── vecpickiter.h │ │ ├── vecproduct.cc │ │ ├── vecsum.cc │ │ ├── vector-et.h │ │ ├── vector.cc │ │ ├── vector.h │ │ ├── vecuops.cc │ │ ├── vecwhere.cc │ │ ├── vecwhere.h │ │ ├── wrap-climits.h │ │ ├── zero.cc │ │ └── zero.h │ ├── dont_delete_me │ ├── fftw-wisdom.exe │ ├── fftw3.f │ ├── fftw3.h │ ├── fftwf-wisdom.exe │ ├── fftwl-wisdom.exe │ ├── libfftw3-3.def │ ├── libfftw3-3.dll │ ├── libfftw3-3.exp │ ├── libfftw3-3.lib │ ├── libfftw3f-3.def │ ├── libfftw3f-3.dll │ ├── libfftw3f-3.exp │ ├── libfftw3f-3.lib │ ├── libfftw3l-3.def │ ├── libfftw3l-3.dll │ ├── libfftw3l-3.exp │ └── libfftw3l-3.lib └── win64 │ ├── COPYING │ ├── COPYRIGHT │ ├── NEWS │ ├── README │ ├── README-WINDOWS │ ├── README-bench │ ├── bench.exe │ ├── benchf.exe │ ├── benchl.exe │ ├── blitz.lib │ ├── blitz │ ├── .cvsignore │ ├── CVS │ │ ├── Entries │ │ ├── Entries.Log │ │ ├── Repository │ │ └── Root │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── applics.h │ ├── array-impl.h │ ├── array-old.h │ ├── array.h │ ├── array │ │ ├── .cvsignore │ │ ├── CVS │ │ │ ├── Entries │ │ │ ├── Repository │ │ │ └── Root │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── asexpr.h │ │ ├── bops.cc │ │ ├── cartesian.h │ │ ├── cgsolve.h │ │ ├── complex.cc │ │ ├── convolve.cc │ │ ├── convolve.h │ │ ├── cycle.cc │ │ ├── domain.h │ │ ├── et.h │ │ ├── eval.cc │ │ ├── expr.h │ │ ├── fastiter.h │ │ ├── funcs.h │ │ ├── functorExpr.h │ │ ├── geometry.h │ │ ├── indirect.h │ │ ├── interlace.cc │ │ ├── io.cc │ │ ├── iter.h │ │ ├── map.h │ │ ├── methods.cc │ │ ├── misc.cc │ │ ├── multi.h │ │ ├── newet-macros.h │ │ ├── newet.h │ │ ├── ops.cc │ │ ├── ops.h │ │ ├── reduce.cc │ │ ├── reduce.h │ │ ├── resize.cc │ │ ├── shape.h │ │ ├── slice.h │ │ ├── slicing.cc │ │ ├── stencil-et.h │ │ ├── stencilops.h │ │ ├── stencils.cc │ │ ├── stencils.h │ │ ├── storage.h │ │ ├── uops.cc │ │ ├── where.h │ │ └── zip.h │ ├── bench.cc │ ├── bench.h │ ├── benchext.cc │ ├── benchext.h │ ├── blitz.h │ ├── bzconfig.h │ ├── bzdebug.h │ ├── compiler.h │ ├── config.h.in │ ├── etbase.h │ ├── extremum.h │ ├── funcs.h │ ├── generate │ │ ├── .cvsignore │ │ ├── CVS │ │ │ ├── Entries │ │ │ ├── Repository │ │ │ └── Root │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── arroperands.h │ │ ├── arroptuple.h │ │ ├── bzfstream.h │ │ ├── genarrbops.cpp │ │ ├── genarruops.cpp │ │ ├── genmatbops.cpp │ │ ├── genmathfunc.cpp │ │ ├── genmatuops.cpp │ │ ├── genpromote.cpp │ │ ├── genvecbfn.cpp │ │ ├── genvecbops.cpp │ │ ├── genvecuops.cpp │ │ ├── genvecwhere.cpp │ │ ├── operands.h │ │ ├── operands2.h │ │ ├── optuple.h │ │ └── optuple2.h │ ├── indexexpr.h │ ├── limits-hack.h │ ├── listinit.h │ ├── matbops.h │ ├── matdiag.h │ ├── matexpr.h │ ├── matgen.h │ ├── mathf2.h │ ├── mathfunc.h │ ├── matltri.h │ ├── matref.h │ ├── matrix.cc │ ├── matrix.h │ ├── matsymm.h │ ├── mattoep.h │ ├── matuops.h │ ├── matutri.h │ ├── memblock.cc │ ├── memblock.h │ ├── meta │ │ ├── .cvsignore │ │ ├── CVS │ │ │ ├── Entries │ │ │ ├── Repository │ │ │ └── Root │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── dot.h │ │ ├── matassign.h │ │ ├── matmat.h │ │ ├── matvec.h │ │ ├── metaprog.h │ │ ├── product.h │ │ ├── sum.h │ │ └── vecassign.h │ ├── minmax.h │ ├── ms │ │ └── bzconfig.h │ ├── mstruct.h │ ├── numinquire.h │ ├── numtrait.h │ ├── ops.h │ ├── prettyprint.h │ ├── promote-old.h │ ├── promote.h │ ├── rand-dunif.h │ ├── rand-mt.h │ ├── rand-normal.h │ ├── rand-tt800.h │ ├── rand-uniform.h │ ├── random.h │ ├── randref.h │ ├── range.h │ ├── reduce.h │ ├── shapecheck.h │ ├── tau.h │ ├── timer.h │ ├── tiny.h │ ├── tinymat.h │ ├── tinymatexpr.h │ ├── tinymatio.cc │ ├── tinyvec-et.h │ ├── tinyvec.cc │ ├── tinyvec.h │ ├── tinyvecio.cc │ ├── tinyveciter.h │ ├── traversal.cc │ ├── traversal.h │ ├── tuning.h │ ├── tvcross.h │ ├── tvecglobs.h │ ├── update.h │ ├── vecaccum.cc │ ├── vecall.cc │ ├── vecany.cc │ ├── vecbfn.cc │ ├── vecbops.cc │ ├── veccount.cc │ ├── vecdelta.cc │ ├── vecdot.cc │ ├── vecexpr.h │ ├── vecexprwrap.h │ ├── vecglobs.cc │ ├── vecglobs.h │ ├── vecio.cc │ ├── veciter.h │ ├── vecmax.cc │ ├── vecmin.cc │ ├── vecnorm.cc │ ├── vecnorm1.cc │ ├── vecpick.cc │ ├── vecpick.h │ ├── vecpickio.cc │ ├── vecpickiter.h │ ├── vecproduct.cc │ ├── vecsum.cc │ ├── vector-et.h │ ├── vector.cc │ ├── vector.h │ ├── vecuops.cc │ ├── vecwhere.cc │ ├── vecwhere.h │ ├── wrap-climits.h │ ├── zero.cc │ └── zero.h │ ├── dont_delete_me │ ├── fftw-wisdom.exe │ ├── fftw3.f │ ├── fftw3.h │ ├── fftwf-wisdom.exe │ ├── fftwl-wisdom.exe │ ├── libfftw3-3.def │ ├── libfftw3-3.dll │ ├── libfftw3-3.exp │ ├── libfftw3-3.lib │ ├── libfftw3f-3.def │ ├── libfftw3f-3.dll │ ├── libfftw3f-3.exp │ ├── libfftw3f-3.lib │ ├── libfftw3l-3.def │ ├── libfftw3l-3.dll │ ├── libfftw3l-3.exp │ └── libfftw3l-3.lib ├── LICENSE ├── Makefile ├── Ocean.h ├── README.md ├── SOP_Cleave.C ├── SOP_Cleave.h ├── SOP_Cleave.icon ├── SOP_Ocean.C ├── SOP_Ocean.h ├── VEX_Ocean.C ├── VEXdso_Darwin ├── VEXdso_Linux ├── VEXdso_win32 ├── compile.sh ├── examples ├── equivalent_geos.hip ├── sop_flotsam.hip ├── sop_mineigval.hip ├── sop_simple.hip ├── vop_displace.hip ├── vopsop_foamparts.hip └── vopsop_two_sources.hip └── otls └── HOT.otl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/.gitignore -------------------------------------------------------------------------------- /3rdparty/build_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/build_linux.sh -------------------------------------------------------------------------------- /3rdparty/build_osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/build_osx.sh -------------------------------------------------------------------------------- /3rdparty/build_win32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/build_win32.sh -------------------------------------------------------------------------------- /3rdparty/build_win64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/build_win64.sh -------------------------------------------------------------------------------- /3rdparty/include/ImathRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/ImathRandom.h -------------------------------------------------------------------------------- /3rdparty/include/loki/AssocVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/AssocVector.h -------------------------------------------------------------------------------- /3rdparty/include/loki/ConstPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/ConstPolicy.h -------------------------------------------------------------------------------- /3rdparty/include/loki/EmptyType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/EmptyType.h -------------------------------------------------------------------------------- /3rdparty/include/loki/Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/Factory.h -------------------------------------------------------------------------------- /3rdparty/include/loki/Function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/Function.h -------------------------------------------------------------------------------- /3rdparty/include/loki/Functor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/Functor.h -------------------------------------------------------------------------------- /3rdparty/include/loki/Key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/Key.h -------------------------------------------------------------------------------- /3rdparty/include/loki/LockingPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/LockingPtr.h -------------------------------------------------------------------------------- /3rdparty/include/loki/LokiExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/LokiExport.h -------------------------------------------------------------------------------- /3rdparty/include/loki/LokiTypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/LokiTypeInfo.h -------------------------------------------------------------------------------- /3rdparty/include/loki/MultiMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/MultiMethods.h -------------------------------------------------------------------------------- /3rdparty/include/loki/NullType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/NullType.h -------------------------------------------------------------------------------- /3rdparty/include/loki/Pimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/Pimpl.h -------------------------------------------------------------------------------- /3rdparty/include/loki/RefToValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/RefToValue.h -------------------------------------------------------------------------------- /3rdparty/include/loki/Register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/Register.h -------------------------------------------------------------------------------- /3rdparty/include/loki/SafeFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/SafeFormat.h -------------------------------------------------------------------------------- /3rdparty/include/loki/ScopeGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/ScopeGuard.h -------------------------------------------------------------------------------- /3rdparty/include/loki/Sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/Sequence.h -------------------------------------------------------------------------------- /3rdparty/include/loki/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/Singleton.h -------------------------------------------------------------------------------- /3rdparty/include/loki/SmallObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/SmallObj.h -------------------------------------------------------------------------------- /3rdparty/include/loki/SmartPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/SmartPtr.h -------------------------------------------------------------------------------- /3rdparty/include/loki/StrongPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/StrongPtr.h -------------------------------------------------------------------------------- /3rdparty/include/loki/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/Threads.h -------------------------------------------------------------------------------- /3rdparty/include/loki/Tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/Tuple.h -------------------------------------------------------------------------------- /3rdparty/include/loki/TypeManip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/TypeManip.h -------------------------------------------------------------------------------- /3rdparty/include/loki/TypeTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/TypeTraits.h -------------------------------------------------------------------------------- /3rdparty/include/loki/Typelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/Typelist.h -------------------------------------------------------------------------------- /3rdparty/include/loki/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/Visitor.h -------------------------------------------------------------------------------- /3rdparty/include/loki/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/readme.txt -------------------------------------------------------------------------------- /3rdparty/include/loki/static_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/static_check.h -------------------------------------------------------------------------------- /3rdparty/include/loki/yasli/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/include/loki/yasli/random.h -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/AUTHORS -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/COPYING -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/ChangeLog -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/ChangeLog.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/ChangeLog.1 -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/INSTALL -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/LEGAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/LEGAL -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/LICENSE -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/Makefile.am -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/Makefile.in -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/NEWS: -------------------------------------------------------------------------------- 1 | 2 | ** Blitz-0.6 3 | 4 | Released October 3, 2002 5 | -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/README -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/TODO -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/aclocal.m4 -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/benchmarks/compiletime.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/bin/autotest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/bin/autotest -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/bin/includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/bin/includes -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/blitz/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/blitz/README -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/blitz/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/blitz/array.h -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/blitz/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/blitz/bench.h -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/blitz/blitz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/blitz/blitz.h -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/blitz/funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/blitz/funcs.h -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/blitz/ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/blitz/ops.h -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/blitz/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/blitz/range.h -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/blitz/tau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/blitz/tau.h -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/blitz/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/blitz/timer.h -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/blitz/tiny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/blitz/tiny.h -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/blitz/zero.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/blitz/zero.cc -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/blitz/zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/blitz/zero.h -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/configure -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/configure.ac -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/doc/blitz.dvi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/doc/blitz.dvi -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/doc/blitz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/doc/blitz.gif -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/doc/blitz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/doc/blitz.pdf -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/doc/blitz.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/doc/blitz.ps -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/doc/indirect.txt: -------------------------------------------------------------------------------- 1 | [picture] 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/doc/sinsoid.txt: -------------------------------------------------------------------------------- 1 | [image] 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/doc/slice.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/doc/slice.eps -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/doc/slice.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/doc/slice.fig -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/doc/slice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/doc/slice.gif -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/doc/slice.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/doc/slice.pdf -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/doc/slice.txt: -------------------------------------------------------------------------------- 1 | [image] 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/doc/stamp-vti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/doc/stamp-vti -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/doc/strideslice.txt: -------------------------------------------------------------------------------- 1 | [image] 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/doc/tensor1.txt: -------------------------------------------------------------------------------- 1 | [image] 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/lib/readme.txt: -------------------------------------------------------------------------------- 1 | This is the directory where libblitz.a should reside. 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/m4/ac_env.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/m4/ac_env.m4 -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/m4/ac_info.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/m4/ac_info.m4 -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/random/F.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/random/F.h -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/random/beta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/random/beta.h -------------------------------------------------------------------------------- /3rdparty/src/blitz-0.9/random/mt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz-0.9/random/mt.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/.cvsignore -------------------------------------------------------------------------------- /3rdparty/src/blitz/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/AUTHORS -------------------------------------------------------------------------------- /3rdparty/src/blitz/Blitz-VS.NET.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/Blitz-VS.NET.zip -------------------------------------------------------------------------------- /3rdparty/src/blitz/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/COPYING -------------------------------------------------------------------------------- /3rdparty/src/blitz/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/COPYRIGHT -------------------------------------------------------------------------------- /3rdparty/src/blitz/CVS/Entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/CVS/Entries -------------------------------------------------------------------------------- /3rdparty/src/blitz/CVS/Entries.Log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/CVS/Entries.Log -------------------------------------------------------------------------------- /3rdparty/src/blitz/CVS/Repository: -------------------------------------------------------------------------------- 1 | blitz 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/CVS/Root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/CVS/Root -------------------------------------------------------------------------------- /3rdparty/src/blitz/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/ChangeLog -------------------------------------------------------------------------------- /3rdparty/src/blitz/ChangeLog.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/ChangeLog.1 -------------------------------------------------------------------------------- /3rdparty/src/blitz/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/INSTALL -------------------------------------------------------------------------------- /3rdparty/src/blitz/LEGAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/LEGAL -------------------------------------------------------------------------------- /3rdparty/src/blitz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/LICENSE -------------------------------------------------------------------------------- /3rdparty/src/blitz/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/Makefile.am -------------------------------------------------------------------------------- /3rdparty/src/blitz/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/Makefile.in -------------------------------------------------------------------------------- /3rdparty/src/blitz/NEWS: -------------------------------------------------------------------------------- 1 | 2 | ** Blitz-0.6 3 | 4 | Released October 3, 2002 5 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/README -------------------------------------------------------------------------------- /3rdparty/src/blitz/README-VS.NET.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/README-VS.NET.txt -------------------------------------------------------------------------------- /3rdparty/src/blitz/README.binutils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/README.binutils -------------------------------------------------------------------------------- /3rdparty/src/blitz/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/TODO -------------------------------------------------------------------------------- /3rdparty/src/blitz/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/aclocal.m4 -------------------------------------------------------------------------------- /3rdparty/src/blitz/benchmarks/CVS/Repository: -------------------------------------------------------------------------------- 1 | blitz/benchmarks 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/benchmarks/cfdf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/benchmarks/cfdf.f -------------------------------------------------------------------------------- /3rdparty/src/blitz/benchmarks/compiletime.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/benchmarks/frek.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/benchmarks/frek.m -------------------------------------------------------------------------------- /3rdparty/src/blitz/benchmarks/qcdf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/benchmarks/qcdf.f -------------------------------------------------------------------------------- /3rdparty/src/blitz/bin/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/bin/.cvsignore -------------------------------------------------------------------------------- /3rdparty/src/blitz/bin/CVS/Entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/bin/CVS/Entries -------------------------------------------------------------------------------- /3rdparty/src/blitz/bin/CVS/Repository: -------------------------------------------------------------------------------- 1 | blitz/bin 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/bin/CVS/Root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/bin/CVS/Root -------------------------------------------------------------------------------- /3rdparty/src/blitz/bin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/bin/Makefile.am -------------------------------------------------------------------------------- /3rdparty/src/blitz/bin/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/bin/Makefile.in -------------------------------------------------------------------------------- /3rdparty/src/blitz/bin/autotest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/bin/autotest -------------------------------------------------------------------------------- /3rdparty/src/blitz/bin/includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/bin/includes -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/.cvsignore -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/CVS/Entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/CVS/Entries -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/CVS/Root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/CVS/Root -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/Makefile.am -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/Makefile.in -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/README -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/applics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/applics.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/array-old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/array-old.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/array.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/array/et.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/array/et.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/array/io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/array/io.cc -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/array/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/array/map.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/array/ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/array/ops.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/array/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/array/zip.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/bench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/bench.cc -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/bench.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/benchext.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/benchext.cc -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/benchext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/benchext.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/blitz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/blitz.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/bzconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/bzconfig.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/bzdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/bzdebug.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/compiler.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/etbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/etbase.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/funcs.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/matbops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/matbops.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/matdiag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/matdiag.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/matexpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/matexpr.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/matgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/matgen.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/mathf2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/mathf2.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/matltri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/matltri.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/matref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/matref.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/matrix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/matrix.cc -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/matrix.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/matsymm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/matsymm.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/mattoep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/mattoep.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/matuops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/matuops.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/matutri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/matutri.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/minmax.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/mstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/mstruct.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/ops.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/promote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/promote.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/rand-mt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/rand-mt.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/random.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/randref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/randref.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/range.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/reduce.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/tau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/tau.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/timer.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/tiny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/tiny.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/tinymat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/tinymat.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/tinyvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/tinyvec.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/tuning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/tuning.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/tvcross.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/tvcross.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/update.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/vecall.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/vecall.cc -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/vecany.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/vecany.cc -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/vecbfn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/vecbfn.cc -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/vecdot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/vecdot.cc -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/vecexpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/vecexpr.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/vecio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/vecio.cc -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/veciter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/veciter.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/vecmax.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/vecmax.cc -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/vecmin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/vecmin.cc -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/vecpick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/vecpick.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/vecsum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/vecsum.cc -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/vector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/vector.cc -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/vector.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/zero.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/zero.cc -------------------------------------------------------------------------------- /3rdparty/src/blitz/blitz/zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/blitz/zero.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/compiler/CVS/Repository: -------------------------------------------------------------------------------- 1 | blitz/compiler 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/compiler/LEGAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/compiler/LEGAL -------------------------------------------------------------------------------- /3rdparty/src/blitz/compiler/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/compiler/README -------------------------------------------------------------------------------- /3rdparty/src/blitz/compiler/cstd.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | return 0; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/config/CVS/Repository: -------------------------------------------------------------------------------- 1 | blitz/config 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/config/CVS/Root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/config/CVS/Root -------------------------------------------------------------------------------- /3rdparty/src/blitz/config/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/config/depcomp -------------------------------------------------------------------------------- /3rdparty/src/blitz/config/mdate-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/config/mdate-sh -------------------------------------------------------------------------------- /3rdparty/src/blitz/config/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/config/missing -------------------------------------------------------------------------------- /3rdparty/src/blitz/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/configure -------------------------------------------------------------------------------- /3rdparty/src/blitz/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/configure.ac -------------------------------------------------------------------------------- /3rdparty/src/blitz/demos/CVS/Entries: -------------------------------------------------------------------------------- 1 | /.cvsignore/1.2/Tue Jan 21 22:39:51 2003// 2 | D 3 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/demos/CVS/Repository: -------------------------------------------------------------------------------- 1 | blitz/demos 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/demos/CVS/Root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/demos/CVS/Root -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/doc/.cvsignore -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/CVS/Entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/doc/CVS/Entries -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/CVS/Repository: -------------------------------------------------------------------------------- 1 | blitz/doc 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/CVS/Root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/doc/CVS/Root -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/doc/Makefile.am -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/doc/Makefile.in -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/blitz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/doc/blitz.gif -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/doxygen/CVS/Repository: -------------------------------------------------------------------------------- 1 | blitz/doc/doxygen 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/examples/CVS/Repository: -------------------------------------------------------------------------------- 1 | blitz/doc/examples 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/indirect.txt: -------------------------------------------------------------------------------- 1 | [picture] 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/makedatestring: -------------------------------------------------------------------------------- 1 | echo "(" `date +"%B %d, %Y"` ")" 2 | 3 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/sinsoid.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/doc/sinsoid.eps -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/sinsoid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/doc/sinsoid.gif -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/sinsoid.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/doc/sinsoid.pdf -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/sinsoid.txt: -------------------------------------------------------------------------------- 1 | [image] 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/slice.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/doc/slice.eps -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/slice.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/doc/slice.fig -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/slice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/doc/slice.gif -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/slice.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/doc/slice.pdf -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/slice.txt: -------------------------------------------------------------------------------- 1 | [image] 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/stamp-vti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/doc/stamp-vti -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/stencils/CVS/Repository: -------------------------------------------------------------------------------- 1 | blitz/doc/stencils 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/strideslice.txt: -------------------------------------------------------------------------------- 1 | [image] 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/tensor1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/doc/tensor1.eps -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/tensor1.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/doc/tensor1.fig -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/tensor1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/doc/tensor1.gif -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/tensor1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/doc/tensor1.pdf -------------------------------------------------------------------------------- /3rdparty/src/blitz/doc/tensor1.txt: -------------------------------------------------------------------------------- 1 | [image] 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/examples/CVS/Repository: -------------------------------------------------------------------------------- 1 | blitz/examples 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/examples/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/examples/io.cpp -------------------------------------------------------------------------------- /3rdparty/src/blitz/lib/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/lib/.cvsignore -------------------------------------------------------------------------------- /3rdparty/src/blitz/lib/CVS/Entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/lib/CVS/Entries -------------------------------------------------------------------------------- /3rdparty/src/blitz/lib/CVS/Repository: -------------------------------------------------------------------------------- 1 | blitz/lib 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/lib/CVS/Root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/lib/CVS/Root -------------------------------------------------------------------------------- /3rdparty/src/blitz/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/lib/Makefile.am -------------------------------------------------------------------------------- /3rdparty/src/blitz/lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/lib/Makefile.in -------------------------------------------------------------------------------- /3rdparty/src/blitz/lib/readme.txt: -------------------------------------------------------------------------------- 1 | This is the directory where libblitz.a should reside. 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/linalg/CVS/Repository: -------------------------------------------------------------------------------- 1 | blitz/linalg 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/linalg/CVS/Root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/linalg/CVS/Root -------------------------------------------------------------------------------- /3rdparty/src/blitz/linalg/V.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/linalg/V.txt -------------------------------------------------------------------------------- /3rdparty/src/blitz/linalg/Z.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/linalg/Z.txt -------------------------------------------------------------------------------- /3rdparty/src/blitz/linalg/gmres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/linalg/gmres.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/m4/CVS/Entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/m4/CVS/Entries -------------------------------------------------------------------------------- /3rdparty/src/blitz/m4/CVS/Repository: -------------------------------------------------------------------------------- 1 | blitz/m4 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/m4/CVS/Root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/m4/CVS/Root -------------------------------------------------------------------------------- /3rdparty/src/blitz/m4/ac_env.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/m4/ac_env.m4 -------------------------------------------------------------------------------- /3rdparty/src/blitz/m4/ac_info.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/m4/ac_info.m4 -------------------------------------------------------------------------------- /3rdparty/src/blitz/manual/CVS/Repository: -------------------------------------------------------------------------------- 1 | blitz/manual 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/manual/CVS/Root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/manual/CVS/Root -------------------------------------------------------------------------------- /3rdparty/src/blitz/manual/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/manual/README -------------------------------------------------------------------------------- /3rdparty/src/blitz/manual/blitz.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/manual/blitz.ps -------------------------------------------------------------------------------- /3rdparty/src/blitz/manual/blitz.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/manual/blitz.yo -------------------------------------------------------------------------------- /3rdparty/src/blitz/manual/constants.yo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/manual/examples/CVS/Repository: -------------------------------------------------------------------------------- 1 | blitz/manual/examples 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/manual/examples/simple.log: -------------------------------------------------------------------------------- 1 | (output from simple.cpp) 2 | 3 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/manual/faq.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/manual/faq.yo -------------------------------------------------------------------------------- /3rdparty/src/blitz/manual/help.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/manual/help.yo -------------------------------------------------------------------------------- /3rdparty/src/blitz/manual/index.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/manual/index.m4 -------------------------------------------------------------------------------- /3rdparty/src/blitz/manual/legal.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/manual/legal.yo -------------------------------------------------------------------------------- /3rdparty/src/blitz/manual/makedatestring: -------------------------------------------------------------------------------- 1 | echo "(" `date +"%B %d, %Y"` ")" 2 | 3 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/manual/preview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/manual/preview -------------------------------------------------------------------------------- /3rdparty/src/blitz/manual/stencils/CVS/Repository: -------------------------------------------------------------------------------- 1 | blitz/manual/stencils 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/manual/stencils/dump1D: -------------------------------------------------------------------------------- 1 | echo $1 2 | dumpst "$1(A,1)" $1 3 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/manual/tau.yo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/manual/tinymatrix.yo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/manual/tuning.yo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/manual/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/manual/update -------------------------------------------------------------------------------- /3rdparty/src/blitz/random/CVS/Repository: -------------------------------------------------------------------------------- 1 | blitz/random 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/random/CVS/Root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/random/CVS/Root -------------------------------------------------------------------------------- /3rdparty/src/blitz/random/F.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/random/F.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/random/beta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/random/beta.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/random/gamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/random/gamma.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/random/mt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/random/mt.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/random/normal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/random/normal.h -------------------------------------------------------------------------------- /3rdparty/src/blitz/src/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/src/.cvsignore -------------------------------------------------------------------------------- /3rdparty/src/blitz/src/CVS/Entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/src/CVS/Entries -------------------------------------------------------------------------------- /3rdparty/src/blitz/src/CVS/Repository: -------------------------------------------------------------------------------- 1 | blitz/src 2 | -------------------------------------------------------------------------------- /3rdparty/src/blitz/src/CVS/Root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/src/CVS/Root -------------------------------------------------------------------------------- /3rdparty/src/blitz/src/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/blitz/src/globals.cpp -------------------------------------------------------------------------------- /3rdparty/src/blitz/testsuite/CVS/Repository: -------------------------------------------------------------------------------- 1 | blitz/testsuite 2 | -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/AUTHORS -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/COPYING -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/COPYRIGHT -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/ChangeLog -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/INSTALL -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/NEWS -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/README -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/TODO -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/aclocal.m4 -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/api/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/api/api.h -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/api/guru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/api/guru.h -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/api/x77.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/api/x77.h -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/config.sub -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/configure -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/depcomp -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/dft/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/dft/conf.c -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/dft/ct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/dft/ct.c -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/dft/ct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/dft/ct.h -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/dft/dft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/dft/dft.h -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/dft/kdft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/dft/kdft.c -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/dft/nop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/dft/nop.c -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/dft/plan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/dft/plan.c -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/dft/scalar/f.h: -------------------------------------------------------------------------------- 1 | #include "t.h" /* same stuff, no need to duplicate */ 2 | -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/dft/scalar/q.h: -------------------------------------------------------------------------------- 1 | #include "t.h" /* same stuff, no need to duplicate */ 2 | -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/dft/zero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/dft/zero.c -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/fftw.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/fftw.pc.in -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/install-sh -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/ltmain.sh -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/missing -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/rdft/nop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/rdft/nop.c -------------------------------------------------------------------------------- /3rdparty/src/fftw-3.2.2/simd/sse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/fftw-3.2.2/simd/sse.c -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/loki-0.1.6/CHANGES -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/Loki.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/loki-0.1.6/Loki.dev -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/Loki.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/loki-0.1.6/Loki.sln -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/loki-0.1.6/Makefile -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/loki-0.1.6/README -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00687.md5: -------------------------------------------------------------------------------- 1 | d3a215c5448413c508248545b109144a -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00688.md5: -------------------------------------------------------------------------------- 1 | 4ba23c6c21ced184ca4938ed9290d74c -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00690.md5: -------------------------------------------------------------------------------- 1 | 62c596200a13287ae1467e361639eadf -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00691.md5: -------------------------------------------------------------------------------- 1 | a8cf5d4839198f1a88be7ad9e0509254 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00696.md5: -------------------------------------------------------------------------------- 1 | 49948173454e2655ccea434f27720307 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00697.md5: -------------------------------------------------------------------------------- 1 | 49948173454e2655ccea434f27720307 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00708.md5: -------------------------------------------------------------------------------- 1 | 1260b948a14bd02e5cb27e836f2bae35 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00710.md5: -------------------------------------------------------------------------------- 1 | e482bc4943a54630e2e0694819d486e9 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00711.md5: -------------------------------------------------------------------------------- 1 | 401e383876ba1318f4b0b83d1afb11b7 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00713.md5: -------------------------------------------------------------------------------- 1 | 1c2e9caa93fd1c28f770e8631af10a84 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00714.md5: -------------------------------------------------------------------------------- 1 | 1c2e9caa93fd1c28f770e8631af10a84 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00720.md5: -------------------------------------------------------------------------------- 1 | 2aebc25ef68b87ac628253928d86a3cd -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00726.md5: -------------------------------------------------------------------------------- 1 | 93c7e4dcb11e0b15cb865744c9613c91 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00728.md5: -------------------------------------------------------------------------------- 1 | 97b23fdb58ea5dc81e886263793981ae -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00729.md5: -------------------------------------------------------------------------------- 1 | f219038810272a6e589ff62fd105b6d3 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00731.md5: -------------------------------------------------------------------------------- 1 | a22e3c7eef3a9eab768174a6ceb907da -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00732.md5: -------------------------------------------------------------------------------- 1 | a22e3c7eef3a9eab768174a6ceb907da -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00734.md5: -------------------------------------------------------------------------------- 1 | cc622724acc1992b825cafacc90c1573 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00735.md5: -------------------------------------------------------------------------------- 1 | cc622724acc1992b825cafacc90c1573 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00737.md5: -------------------------------------------------------------------------------- 1 | 712debf6e17d497aa930f1c340e77e1b -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00738.md5: -------------------------------------------------------------------------------- 1 | 712debf6e17d497aa930f1c340e77e1b -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00740.md5: -------------------------------------------------------------------------------- 1 | 08a2a4dac81302de6a8301ea68a2fecd -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00741.md5: -------------------------------------------------------------------------------- 1 | 08a2a4dac81302de6a8301ea68a2fecd -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00743.md5: -------------------------------------------------------------------------------- 1 | e041d8d72b89b4cf94f27665cddae1fc -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00744.md5: -------------------------------------------------------------------------------- 1 | e041d8d72b89b4cf94f27665cddae1fc -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00746.md5: -------------------------------------------------------------------------------- 1 | 938ba8ff075fa3ffdfd8b8072dd10438 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00747.md5: -------------------------------------------------------------------------------- 1 | 938ba8ff075fa3ffdfd8b8072dd10438 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00749.md5: -------------------------------------------------------------------------------- 1 | 5db0c6f2efbf650631f7f9a0aa96d1d9 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00750.md5: -------------------------------------------------------------------------------- 1 | 5db0c6f2efbf650631f7f9a0aa96d1d9 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00752.md5: -------------------------------------------------------------------------------- 1 | 754a3816a1379eec723e7d7154918f63 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00753.md5: -------------------------------------------------------------------------------- 1 | 754a3816a1379eec723e7d7154918f63 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00755.md5: -------------------------------------------------------------------------------- 1 | bebc24ae3c82118808f2e91c5f96e00c -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00756.md5: -------------------------------------------------------------------------------- 1 | bebc24ae3c82118808f2e91c5f96e00c -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00758.md5: -------------------------------------------------------------------------------- 1 | f1b8acf2bd51426d298b79b70e335b5e -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00759.md5: -------------------------------------------------------------------------------- 1 | f1b8acf2bd51426d298b79b70e335b5e -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00761.md5: -------------------------------------------------------------------------------- 1 | beb6be838d427244be85190b2ced45ad -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00762.md5: -------------------------------------------------------------------------------- 1 | beb6be838d427244be85190b2ced45ad -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00764.md5: -------------------------------------------------------------------------------- 1 | 52b4375c231c16a0d8835ec376acd35c -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00765.md5: -------------------------------------------------------------------------------- 1 | 52b4375c231c16a0d8835ec376acd35c -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00767.md5: -------------------------------------------------------------------------------- 1 | 74c8deb5750006a5c656b34817ca53a2 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00768.md5: -------------------------------------------------------------------------------- 1 | 74c8deb5750006a5c656b34817ca53a2 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00770.md5: -------------------------------------------------------------------------------- 1 | 6f4013338b26c510a37b3127d61c0ecf -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00771.md5: -------------------------------------------------------------------------------- 1 | 6f4013338b26c510a37b3127d61c0ecf -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00773.md5: -------------------------------------------------------------------------------- 1 | 788c6c6f4b160ef6b62bd1bfb80521cf -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00774.md5: -------------------------------------------------------------------------------- 1 | 788c6c6f4b160ef6b62bd1bfb80521cf -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00776.md5: -------------------------------------------------------------------------------- 1 | 096ff63756f4ba37fbbf762177088ab8 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00778.md5: -------------------------------------------------------------------------------- 1 | 8ec49a54ffe3aff856d23be97982813f -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00780.md5: -------------------------------------------------------------------------------- 1 | 0b843b7421fba4d15e74375a93f493f2 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00781.md5: -------------------------------------------------------------------------------- 1 | 65695b71534c05abe8847350c965c479 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00783.md5: -------------------------------------------------------------------------------- 1 | c146364d89eaf28595d80c63011645e9 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00784.md5: -------------------------------------------------------------------------------- 1 | c146364d89eaf28595d80c63011645e9 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00786.md5: -------------------------------------------------------------------------------- 1 | b7112cd1496c8460115e22b76828c1ba -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00787.md5: -------------------------------------------------------------------------------- 1 | b7112cd1496c8460115e22b76828c1ba -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00789.md5: -------------------------------------------------------------------------------- 1 | b1981b15e21858c0df729973e0d6dea4 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00790.md5: -------------------------------------------------------------------------------- 1 | b1981b15e21858c0df729973e0d6dea4 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00792.md5: -------------------------------------------------------------------------------- 1 | c0921be4a08512f57dac56e266171d08 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00793.md5: -------------------------------------------------------------------------------- 1 | c0921be4a08512f57dac56e266171d08 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00795.md5: -------------------------------------------------------------------------------- 1 | 7619dd0fce24a7719657298ed07f73ba -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00796.md5: -------------------------------------------------------------------------------- 1 | 7619dd0fce24a7719657298ed07f73ba -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00798.md5: -------------------------------------------------------------------------------- 1 | 9c92143ddd32ebdfc5efa5e8b671bce5 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00799.md5: -------------------------------------------------------------------------------- 1 | 9c92143ddd32ebdfc5efa5e8b671bce5 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00801.md5: -------------------------------------------------------------------------------- 1 | 5e38a38b0c5273412db1eb4fbb6bd9c0 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00802.md5: -------------------------------------------------------------------------------- 1 | 5e38a38b0c5273412db1eb4fbb6bd9c0 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00804.md5: -------------------------------------------------------------------------------- 1 | 12c5f418fd63d087f3160a0f77afa539 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00805.md5: -------------------------------------------------------------------------------- 1 | 12c5f418fd63d087f3160a0f77afa539 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00807.md5: -------------------------------------------------------------------------------- 1 | 18e9b3b95c2b97ff5843fa2e62664beb -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00808.md5: -------------------------------------------------------------------------------- 1 | 18e9b3b95c2b97ff5843fa2e62664beb -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00810.md5: -------------------------------------------------------------------------------- 1 | 9d4e3b94355f504386f9f9ac8d873b07 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00811.md5: -------------------------------------------------------------------------------- 1 | 9d4e3b94355f504386f9f9ac8d873b07 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00813.md5: -------------------------------------------------------------------------------- 1 | 117a5db936d64abd61c5f4b988b12396 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00814.md5: -------------------------------------------------------------------------------- 1 | 117a5db936d64abd61c5f4b988b12396 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00816.md5: -------------------------------------------------------------------------------- 1 | b42379deda3e573010bba6d680cc6f21 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00817.md5: -------------------------------------------------------------------------------- 1 | b42379deda3e573010bba6d680cc6f21 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00819.md5: -------------------------------------------------------------------------------- 1 | 1416ebd2d0ff6ae9246a3c1ce771bd5b -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00820.md5: -------------------------------------------------------------------------------- 1 | 1416ebd2d0ff6ae9246a3c1ce771bd5b -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00822.md5: -------------------------------------------------------------------------------- 1 | de62a2854f84f900c39c891a3716d402 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00823.md5: -------------------------------------------------------------------------------- 1 | de62a2854f84f900c39c891a3716d402 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00825.md5: -------------------------------------------------------------------------------- 1 | 67bf4109f0f9deb85d66ba36e0947a82 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00826.md5: -------------------------------------------------------------------------------- 1 | 67bf4109f0f9deb85d66ba36e0947a82 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00828.md5: -------------------------------------------------------------------------------- 1 | eed3a7db0cf6a48fbbd1cb537aa8cc65 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00829.md5: -------------------------------------------------------------------------------- 1 | eed3a7db0cf6a48fbbd1cb537aa8cc65 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00831.md5: -------------------------------------------------------------------------------- 1 | a6bfa4718bb4245437205d9731fdde91 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00832.md5: -------------------------------------------------------------------------------- 1 | 964ecb6a6462227d73cb56249dc08e61 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00834.md5: -------------------------------------------------------------------------------- 1 | 9d52393862a40a2d89cde38eee770526 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00835.md5: -------------------------------------------------------------------------------- 1 | 9d52393862a40a2d89cde38eee770526 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00837.md5: -------------------------------------------------------------------------------- 1 | 52b4299fc909eec6973644f4714c4333 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00838.md5: -------------------------------------------------------------------------------- 1 | 52b4299fc909eec6973644f4714c4333 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00840.md5: -------------------------------------------------------------------------------- 1 | 34a5c3aee464c43b74f21c0b0589c2cf -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00841.md5: -------------------------------------------------------------------------------- 1 | 34a5c3aee464c43b74f21c0b0589c2cf -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00843.md5: -------------------------------------------------------------------------------- 1 | 3e420dbb48d2a7fcf3b557c107e09d2a -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00844.md5: -------------------------------------------------------------------------------- 1 | 3e420dbb48d2a7fcf3b557c107e09d2a -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00846.md5: -------------------------------------------------------------------------------- 1 | 849d7fb6298df3720d5d0b024b6a191e -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00847.md5: -------------------------------------------------------------------------------- 1 | 849d7fb6298df3720d5d0b024b6a191e -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00849.md5: -------------------------------------------------------------------------------- 1 | 982cfc3e856a5f2726003bc4754bfb8e -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00850.md5: -------------------------------------------------------------------------------- 1 | 982cfc3e856a5f2726003bc4754bfb8e -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00852.md5: -------------------------------------------------------------------------------- 1 | f7c79d69197da78b9902a732be225ca7 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00853.md5: -------------------------------------------------------------------------------- 1 | f7c79d69197da78b9902a732be225ca7 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00855.md5: -------------------------------------------------------------------------------- 1 | 07f9671ad726ec23db670db5182681d7 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00856.md5: -------------------------------------------------------------------------------- 1 | 07f9671ad726ec23db670db5182681d7 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00858.md5: -------------------------------------------------------------------------------- 1 | 6e99287ada699891af2ac3aac87fb833 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00859.md5: -------------------------------------------------------------------------------- 1 | 6e99287ada699891af2ac3aac87fb833 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00861.md5: -------------------------------------------------------------------------------- 1 | 90709d412eba06fa24fd2884998fa6f0 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00862.md5: -------------------------------------------------------------------------------- 1 | 90709d412eba06fa24fd2884998fa6f0 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00864.md5: -------------------------------------------------------------------------------- 1 | 15a20be4fe52ad231a55229bc45f9d8d -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00865.md5: -------------------------------------------------------------------------------- 1 | 15a20be4fe52ad231a55229bc45f9d8d -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00867.md5: -------------------------------------------------------------------------------- 1 | e95926c0a2c55b2ae37df1ffaf5f78b5 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00868.md5: -------------------------------------------------------------------------------- 1 | e95926c0a2c55b2ae37df1ffaf5f78b5 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00870.md5: -------------------------------------------------------------------------------- 1 | 99eba424425fc23ec70055b5a30efeae -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00871.md5: -------------------------------------------------------------------------------- 1 | 99eba424425fc23ec70055b5a30efeae -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00873.md5: -------------------------------------------------------------------------------- 1 | 4c0428d973be7ae066cf23d97e36088e -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00874.md5: -------------------------------------------------------------------------------- 1 | 4c0428d973be7ae066cf23d97e36088e -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00876.md5: -------------------------------------------------------------------------------- 1 | 4fa1d0048435558bbe8704d74f0b63d6 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00877.md5: -------------------------------------------------------------------------------- 1 | 4fa1d0048435558bbe8704d74f0b63d6 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00881.md5: -------------------------------------------------------------------------------- 1 | 01ceabe0fc1a8235c920cc80a7b6666e -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00885.md5: -------------------------------------------------------------------------------- 1 | 2792592878eb3a0f0270cc6286442c8c -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00886.md5: -------------------------------------------------------------------------------- 1 | 3734ebabfb21de5ebbec54d191784e91 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00889.md5: -------------------------------------------------------------------------------- 1 | 96ab384f07456c8b39dfdb7501fe9392 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00892.md5: -------------------------------------------------------------------------------- 1 | 4375ba0621874265837ee5b2f1a1b2a5 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00893.md5: -------------------------------------------------------------------------------- 1 | 6d397735104ce60dd2a0e4d9cf9fef36 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00900.md5: -------------------------------------------------------------------------------- 1 | 01aa506a7b50f22adb9c432ea3aba36c -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00906.md5: -------------------------------------------------------------------------------- 1 | 5e1febfdb11e4d756d3d1de6dd44767f -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00907.md5: -------------------------------------------------------------------------------- 1 | 1bbcab783529d7f1bad21bb78b46f4fc -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00916.md5: -------------------------------------------------------------------------------- 1 | fd71b753fc77212cc53a27c20ce5decf -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00917.md5: -------------------------------------------------------------------------------- 1 | fd71b753fc77212cc53a27c20ce5decf -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00918.md5: -------------------------------------------------------------------------------- 1 | b86b0ccd48b95b429c052ebe11dfd186 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00919.md5: -------------------------------------------------------------------------------- 1 | b86b0ccd48b95b429c052ebe11dfd186 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00921.md5: -------------------------------------------------------------------------------- 1 | b64665c2b9b96c0ead892c7b5d2ffd47 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00923.md5: -------------------------------------------------------------------------------- 1 | fe4cd4012778357fe9f71b998c41960a -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00924.md5: -------------------------------------------------------------------------------- 1 | e0ef0eb53447a88f236a440c29b8358a -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00926.md5: -------------------------------------------------------------------------------- 1 | f9893b9ed74e22f726a5559e0a51d63d -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00927.md5: -------------------------------------------------------------------------------- 1 | f9893b9ed74e22f726a5559e0a51d63d -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00929.md5: -------------------------------------------------------------------------------- 1 | 906c5cb841cc1e21c3799cf861dfa81a -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00930.md5: -------------------------------------------------------------------------------- 1 | 906c5cb841cc1e21c3799cf861dfa81a -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00932.md5: -------------------------------------------------------------------------------- 1 | b7bb05dff12ad093b3b3f5c7f623837e -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00933.md5: -------------------------------------------------------------------------------- 1 | b7bb05dff12ad093b3b3f5c7f623837e -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00935.md5: -------------------------------------------------------------------------------- 1 | 902a06002aa0b1d2bd86b7dee34c7a72 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00936.md5: -------------------------------------------------------------------------------- 1 | 902a06002aa0b1d2bd86b7dee34c7a72 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00938.md5: -------------------------------------------------------------------------------- 1 | 5cd393ee85c7513979f0640f6b53e8c3 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00939.md5: -------------------------------------------------------------------------------- 1 | 5cd393ee85c7513979f0640f6b53e8c3 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00941.md5: -------------------------------------------------------------------------------- 1 | 319ef28915fb5854fe08a34d7b7535df -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00942.md5: -------------------------------------------------------------------------------- 1 | 319ef28915fb5854fe08a34d7b7535df -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00944.md5: -------------------------------------------------------------------------------- 1 | 707fb0d7d4fa79d9a5a1e0c5ecf89143 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00945.md5: -------------------------------------------------------------------------------- 1 | 707fb0d7d4fa79d9a5a1e0c5ecf89143 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00947.md5: -------------------------------------------------------------------------------- 1 | 2cd3bcdd0da15bf81cfcf5a72504cf38 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00948.md5: -------------------------------------------------------------------------------- 1 | 2cd3bcdd0da15bf81cfcf5a72504cf38 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00950.md5: -------------------------------------------------------------------------------- 1 | b378714f16d67604148f44aeeed0d772 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00951.md5: -------------------------------------------------------------------------------- 1 | b378714f16d67604148f44aeeed0d772 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00969.md5: -------------------------------------------------------------------------------- 1 | cb2dade4862833d70e02a72ca9852b20 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00970.md5: -------------------------------------------------------------------------------- 1 | d15cfac9ba991537e2e4ae3231bc71a4 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00972.md5: -------------------------------------------------------------------------------- 1 | ac01862c41041aafa3bcc59a8db723d8 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00973.md5: -------------------------------------------------------------------------------- 1 | 97384612a8ef02c85cedb608aefb1150 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00975.md5: -------------------------------------------------------------------------------- 1 | 7aed37d0623f6607a3466910386e444e -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00977.md5: -------------------------------------------------------------------------------- 1 | 55b9b201ec3f20c44269806c93f2ea8d -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00978.md5: -------------------------------------------------------------------------------- 1 | 13784efa3872152b70c4621095b9e3ec -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00980.md5: -------------------------------------------------------------------------------- 1 | d8648224a9fead46c44b327abb87cf5e -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00981.md5: -------------------------------------------------------------------------------- 1 | 69a9c3296657654f2782d44e90051d9b -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00992.md5: -------------------------------------------------------------------------------- 1 | 94c2ba15055aac24d956733b05c5bcc7 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a00993.md5: -------------------------------------------------------------------------------- 1 | 295f3874971a35332332079c00dbd5de -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01008.md5: -------------------------------------------------------------------------------- 1 | ea1126bf046fe4846f14fb94d7097acb -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01018.md5: -------------------------------------------------------------------------------- 1 | cf56a90edc581ff820b2b6ed3774c4c0 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01020.md5: -------------------------------------------------------------------------------- 1 | 5d297ba4e74a4b99fd4df1f7e8a652b0 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01053.md5: -------------------------------------------------------------------------------- 1 | f2e7aa6928c22a80b50c2cb451015c97 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01054.md5: -------------------------------------------------------------------------------- 1 | b8215e4966301e0f800462897ab32c82 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01056.md5: -------------------------------------------------------------------------------- 1 | 48e1992be102bb45507c600319080ae9 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01057.md5: -------------------------------------------------------------------------------- 1 | 6b52a027f05af7f0623c6b202ccd1d27 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01059.md5: -------------------------------------------------------------------------------- 1 | e3e3c184a2e9c6b9d642b53729a6c1b9 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01060.md5: -------------------------------------------------------------------------------- 1 | 5aec8277a2db91dc11ef285b8358df50 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01062.md5: -------------------------------------------------------------------------------- 1 | 052e570cbb2d824aae25dbdd295c0926 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01063.md5: -------------------------------------------------------------------------------- 1 | 820fbf113f09026b4bfb41435a5472d8 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01065.md5: -------------------------------------------------------------------------------- 1 | d62ebb57dcd7c97a52d2e710735914ce -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01066.md5: -------------------------------------------------------------------------------- 1 | d62ebb57dcd7c97a52d2e710735914ce -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01068.md5: -------------------------------------------------------------------------------- 1 | bff7ea120126b20adaa59d590df06747 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01069.md5: -------------------------------------------------------------------------------- 1 | bff7ea120126b20adaa59d590df06747 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01074.md5: -------------------------------------------------------------------------------- 1 | ffff0478e80fc68dd126c0c59f7f9b83 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01075.md5: -------------------------------------------------------------------------------- 1 | ffff0478e80fc68dd126c0c59f7f9b83 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01078.md5: -------------------------------------------------------------------------------- 1 | 31556deb46dd78a60f040a6b1c0fedd7 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01080.md5: -------------------------------------------------------------------------------- 1 | 319d985aaf712dd466bda96334bc10ec -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01081.md5: -------------------------------------------------------------------------------- 1 | a37b6af2499f46eee2ecf21e2b54803f -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01082.md5: -------------------------------------------------------------------------------- 1 | 46c72b177db49978e32e819923a75182 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01083.md5: -------------------------------------------------------------------------------- 1 | 46c72b177db49978e32e819923a75182 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01085.md5: -------------------------------------------------------------------------------- 1 | c950ee9d4164fb511c3afe7c59d57364 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01086.md5: -------------------------------------------------------------------------------- 1 | c950ee9d4164fb511c3afe7c59d57364 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01088.md5: -------------------------------------------------------------------------------- 1 | 649f8e5727b4ec1176fd2b4ab94d70b9 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01089.md5: -------------------------------------------------------------------------------- 1 | 649f8e5727b4ec1176fd2b4ab94d70b9 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01091.md5: -------------------------------------------------------------------------------- 1 | 730e45e0e027d829df2ce73464f40772 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01092.md5: -------------------------------------------------------------------------------- 1 | b7016aa94565cd551502b757f7d232c3 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01094.md5: -------------------------------------------------------------------------------- 1 | 32e89a1d4eb74b9ff11affcce6a0c44d -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01095.md5: -------------------------------------------------------------------------------- 1 | f5f7ac77636297ed3d077cc0e684137c -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01097.md5: -------------------------------------------------------------------------------- 1 | 8ed2f1ba6665b6f20f414969ea655916 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01098.md5: -------------------------------------------------------------------------------- 1 | 78db0c8750da50f275e0640f9467132f -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01100.md5: -------------------------------------------------------------------------------- 1 | 1cac07583747bdfaeae60b2c6a7c7f43 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01101.md5: -------------------------------------------------------------------------------- 1 | 5bb9a440dd2fd8e924e19b7e57ca347c -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01103.md5: -------------------------------------------------------------------------------- 1 | c39113181d7e0053e608fe97163d4614 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01104.md5: -------------------------------------------------------------------------------- 1 | e344cc78436049475f016b422dc361d6 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01106.md5: -------------------------------------------------------------------------------- 1 | b3b1f402ee857a15de6ca07eb1f1e9e2 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01107.md5: -------------------------------------------------------------------------------- 1 | 4295fc7ddb2c3a7be4bdccd7a430ad31 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01109.md5: -------------------------------------------------------------------------------- 1 | e05457134dac8b202728851d3d3c0fe3 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01110.md5: -------------------------------------------------------------------------------- 1 | aff662e623318298741b66d3bad916ac -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01112.md5: -------------------------------------------------------------------------------- 1 | 3d1c7cc62be80bd4a90eabefead21d0a -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01113.md5: -------------------------------------------------------------------------------- 1 | 40ffbdfbed83e8355bdfdd6921c1e5ed -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01115.md5: -------------------------------------------------------------------------------- 1 | 8dde56e1e436896e4c19b3286d5b7bfa -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01116.md5: -------------------------------------------------------------------------------- 1 | b47a1067bc1cb275797b0eac87363fe7 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01118.md5: -------------------------------------------------------------------------------- 1 | 34d6e278df60c3dd596774d2f774fdd3 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01119.md5: -------------------------------------------------------------------------------- 1 | b23c98ca378771668128988f4af778f5 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01121.md5: -------------------------------------------------------------------------------- 1 | 24b11b313948b3de1253f6e0c6524c14 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01122.md5: -------------------------------------------------------------------------------- 1 | 12284f00f0994a6bf703d95c1f939678 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01124.md5: -------------------------------------------------------------------------------- 1 | f7c36994310bdfa201f7991ddb5be5da -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01125.md5: -------------------------------------------------------------------------------- 1 | 7863d42849c320ad3ca0f08bd34da963 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01127.md5: -------------------------------------------------------------------------------- 1 | 4fba29d38e254efee139b3a96580de8d -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01128.md5: -------------------------------------------------------------------------------- 1 | 987f4ba6feb18354a895e6986105287a -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01130.md5: -------------------------------------------------------------------------------- 1 | 4091459ac45e93596ab957d4116dcfed -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01131.md5: -------------------------------------------------------------------------------- 1 | bd56e6ffb99f9b19c0f07766a0770688 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01133.md5: -------------------------------------------------------------------------------- 1 | db4d4a700afaa501fbfbdf152c88285d -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01134.md5: -------------------------------------------------------------------------------- 1 | 6345baa162810a7b7875906e2d375c27 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01136.md5: -------------------------------------------------------------------------------- 1 | a76caa56a56989c852e816bce842f690 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01137.md5: -------------------------------------------------------------------------------- 1 | a09e8e1858fa7aa161b484791a3c9a2f -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01139.md5: -------------------------------------------------------------------------------- 1 | 40edf51d1791398a7bf8c0b4be24163f -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01140.md5: -------------------------------------------------------------------------------- 1 | fe33ed3856ad4c713f0d833b34ba0a6f -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01142.md5: -------------------------------------------------------------------------------- 1 | c6507902c3b527ccc3c1c74f96556d4b -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01143.md5: -------------------------------------------------------------------------------- 1 | 16d4400d71cc50b586daf4943dc7066f -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01145.md5: -------------------------------------------------------------------------------- 1 | 309d12f53c56c595664890b242d54419 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01146.md5: -------------------------------------------------------------------------------- 1 | ec809975396f5bb27a1f2347223b2218 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01148.md5: -------------------------------------------------------------------------------- 1 | 82d377c95837ecf99b99748807247b92 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01149.md5: -------------------------------------------------------------------------------- 1 | 9ee40b86d3d3290627055ca1a2b12bf2 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01151.md5: -------------------------------------------------------------------------------- 1 | e402950b25ec8fb4af6b574f19ce221e -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01152.md5: -------------------------------------------------------------------------------- 1 | a9fd76ebd3ef036bbcc0b0e64d4f0d3c -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01154.md5: -------------------------------------------------------------------------------- 1 | f424c8d624947dc1ba3e24e4e3636f33 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01155.md5: -------------------------------------------------------------------------------- 1 | 3b83ae7600632b96d23a554d66452f91 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01157.md5: -------------------------------------------------------------------------------- 1 | 795161bfec8bd29e95ca6024e2214a52 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01158.md5: -------------------------------------------------------------------------------- 1 | 011f25e93028747083593d93e5ae9c30 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01160.md5: -------------------------------------------------------------------------------- 1 | f1e9fea757c051b54d940961c7bfa875 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01161.md5: -------------------------------------------------------------------------------- 1 | 1919a20c76497e8645ba3ea5d18775c6 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01163.md5: -------------------------------------------------------------------------------- 1 | a52282941c340107f805fb1cdd5ba904 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01164.md5: -------------------------------------------------------------------------------- 1 | dd6b47804c52aed5d9c605c2951b7b34 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01166.md5: -------------------------------------------------------------------------------- 1 | 8b16b5f51e9d2bb3c0a4c398d32e30e0 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01167.md5: -------------------------------------------------------------------------------- 1 | 44e289a9886a9ef18193a9ceb308209e -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01169.md5: -------------------------------------------------------------------------------- 1 | 9f52b1580d92938314efb4a90a7ae9c8 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01170.md5: -------------------------------------------------------------------------------- 1 | 0ed2aeb7e5322f7c183d260043457c41 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01172.md5: -------------------------------------------------------------------------------- 1 | 1d2b4541e3decd76f9af5c2facef6a59 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01173.md5: -------------------------------------------------------------------------------- 1 | 7a73543366595a568956e7e43df9598b -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01175.md5: -------------------------------------------------------------------------------- 1 | b79677f06014fcdd6e5e4f93e0c3660f -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01176.md5: -------------------------------------------------------------------------------- 1 | 6f87e9330ebd4db9d5357ea89b30c207 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01178.md5: -------------------------------------------------------------------------------- 1 | 57eec251555bb562e1b96677405d00a4 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01180.md5: -------------------------------------------------------------------------------- 1 | 99bdcc28d34ceaaa6462ebadb2f7238d -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01181.md5: -------------------------------------------------------------------------------- 1 | e09b4d10f97d5c2bbd2e855721556a0f -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01182.md5: -------------------------------------------------------------------------------- 1 | d1996b28d29d1ae0100db95a765a23e2 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01183.md5: -------------------------------------------------------------------------------- 1 | 89c61f5312cad459284f7ff74e9d30a2 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01184.md5: -------------------------------------------------------------------------------- 1 | 51a5aae3886cfd5fa1eb12e0dbb1b381 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01185.md5: -------------------------------------------------------------------------------- 1 | 51a5aae3886cfd5fa1eb12e0dbb1b381 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01186.md5: -------------------------------------------------------------------------------- 1 | ce9524454495a9d3acf76e59450407eb -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01187.md5: -------------------------------------------------------------------------------- 1 | ce9524454495a9d3acf76e59450407eb -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01188.md5: -------------------------------------------------------------------------------- 1 | c71667a0aad840f66419af29a4f81948 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01189.md5: -------------------------------------------------------------------------------- 1 | c71667a0aad840f66419af29a4f81948 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01190.md5: -------------------------------------------------------------------------------- 1 | af4acfeb1702aaaf9e27e6cd9c82532c -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01192.md5: -------------------------------------------------------------------------------- 1 | d118e3bdd09d694566849211d16fa5e6 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01193.md5: -------------------------------------------------------------------------------- 1 | 6d4fad8ad963b9e63b2ac92ed30f4f61 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01201.md5: -------------------------------------------------------------------------------- 1 | 92be9b70b42f53b1fd1ad8166bef6af2 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01203.md5: -------------------------------------------------------------------------------- 1 | 3f851ae71cf6d44548a342bdee49097d -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01204.md5: -------------------------------------------------------------------------------- 1 | 48d97dbc889bd6095af2671ac3b47cd2 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01211.md5: -------------------------------------------------------------------------------- 1 | 0dca8b7a2c8797db11cec9fc7c774d3c -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01214.md5: -------------------------------------------------------------------------------- 1 | 2d4b73fc1c05be647fca8ca9ca1859b3 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01215.md5: -------------------------------------------------------------------------------- 1 | 2d4b73fc1c05be647fca8ca9ca1859b3 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01218.md5: -------------------------------------------------------------------------------- 1 | 864f946c52de7e05c10a496ede105d1d -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01219.md5: -------------------------------------------------------------------------------- 1 | 02777abd086637372982cdb127963c09 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/doc/html/a01446.md5: -------------------------------------------------------------------------------- 1 | df6441dc0cff3583c7492f1241667aa0 -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/lib/README: -------------------------------------------------------------------------------- 1 | There is no library (*.lib) when using the ms vc++ toolkit 2003. 2 | -------------------------------------------------------------------------------- /3rdparty/src/loki-0.1.6/loki.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/src/loki-0.1.6/loki.spec -------------------------------------------------------------------------------- /3rdparty/win32/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/COPYING -------------------------------------------------------------------------------- /3rdparty/win32/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/COPYRIGHT -------------------------------------------------------------------------------- /3rdparty/win32/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/NEWS -------------------------------------------------------------------------------- /3rdparty/win32/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/README -------------------------------------------------------------------------------- /3rdparty/win32/README-WINDOWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/README-WINDOWS -------------------------------------------------------------------------------- /3rdparty/win32/README-bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/README-bench -------------------------------------------------------------------------------- /3rdparty/win32/bench.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/bench.exe -------------------------------------------------------------------------------- /3rdparty/win32/benchf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/benchf.exe -------------------------------------------------------------------------------- /3rdparty/win32/benchl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/benchl.exe -------------------------------------------------------------------------------- /3rdparty/win32/blitz.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz.lib -------------------------------------------------------------------------------- /3rdparty/win32/blitz/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/.cvsignore -------------------------------------------------------------------------------- /3rdparty/win32/blitz/CVS/Entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/CVS/Entries -------------------------------------------------------------------------------- /3rdparty/win32/blitz/CVS/Root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/CVS/Root -------------------------------------------------------------------------------- /3rdparty/win32/blitz/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/Makefile.am -------------------------------------------------------------------------------- /3rdparty/win32/blitz/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/Makefile.in -------------------------------------------------------------------------------- /3rdparty/win32/blitz/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/README -------------------------------------------------------------------------------- /3rdparty/win32/blitz/applics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/applics.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/array-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/array-impl.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/array-old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/array-old.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/array.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/array/bops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/array/bops.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/array/et.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/array/et.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/array/eval.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/array/eval.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/array/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/array/expr.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/array/funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/array/funcs.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/array/io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/array/io.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/array/iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/array/iter.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/array/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/array/map.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/array/misc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/array/misc.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/array/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/array/multi.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/array/newet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/array/newet.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/array/ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/array/ops.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/array/ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/array/ops.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/array/shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/array/shape.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/array/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/array/slice.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/array/uops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/array/uops.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/array/where.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/array/where.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/array/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/array/zip.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/bench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/bench.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/bench.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/benchext.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/benchext.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/benchext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/benchext.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/blitz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/blitz.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/bzconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/bzconfig.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/bzdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/bzdebug.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/compiler.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/config.h.in -------------------------------------------------------------------------------- /3rdparty/win32/blitz/etbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/etbase.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/extremum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/extremum.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/funcs.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/indexexpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/indexexpr.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/limits-hack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/limits-hack.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/listinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/listinit.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/matbops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/matbops.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/matdiag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/matdiag.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/matexpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/matexpr.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/matgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/matgen.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/mathf2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/mathf2.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/mathfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/mathfunc.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/matltri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/matltri.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/matref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/matref.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/matrix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/matrix.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/matrix.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/matsymm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/matsymm.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/mattoep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/mattoep.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/matuops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/matuops.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/matutri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/matutri.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/memblock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/memblock.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/memblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/memblock.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/meta/CVS/Root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/meta/CVS/Root -------------------------------------------------------------------------------- /3rdparty/win32/blitz/meta/dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/meta/dot.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/meta/matmat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/meta/matmat.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/meta/matvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/meta/matvec.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/meta/sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/meta/sum.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/minmax.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/ms/bzconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/ms/bzconfig.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/mstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/mstruct.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/numinquire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/numinquire.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/numtrait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/numtrait.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/ops.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/prettyprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/prettyprint.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/promote-old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/promote-old.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/promote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/promote.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/rand-dunif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/rand-dunif.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/rand-mt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/rand-mt.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/rand-normal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/rand-normal.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/rand-tt800.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/rand-tt800.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/random.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/randref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/randref.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/range.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/reduce.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/shapecheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/shapecheck.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/tau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/tau.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/timer.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/tiny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/tiny.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/tinymat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/tinymat.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/tinymatexpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/tinymatexpr.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/tinymatio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/tinymatio.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/tinyvec-et.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/tinyvec-et.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/tinyvec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/tinyvec.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/tinyvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/tinyvec.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/tinyvecio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/tinyvecio.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/tinyveciter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/tinyveciter.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/traversal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/traversal.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/traversal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/traversal.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/tuning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/tuning.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/tvcross.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/tvcross.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/tvecglobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/tvecglobs.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/update.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vecaccum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vecaccum.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vecall.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vecall.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vecany.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vecany.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vecbfn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vecbfn.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vecbops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vecbops.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/veccount.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/veccount.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vecdelta.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vecdelta.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vecdot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vecdot.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vecexpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vecexpr.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vecexprwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vecexprwrap.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vecglobs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vecglobs.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vecglobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vecglobs.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vecio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vecio.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/veciter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/veciter.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vecmax.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vecmax.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vecmin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vecmin.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vecnorm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vecnorm.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vecnorm1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vecnorm1.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vecpick.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vecpick.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vecpick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vecpick.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vecpickio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vecpickio.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vecpickiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vecpickiter.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vecproduct.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vecproduct.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vecsum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vecsum.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vector-et.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vector-et.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vector.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vector.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vecuops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vecuops.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vecwhere.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vecwhere.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/vecwhere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/vecwhere.h -------------------------------------------------------------------------------- /3rdparty/win32/blitz/zero.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/zero.cc -------------------------------------------------------------------------------- /3rdparty/win32/blitz/zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/blitz/zero.h -------------------------------------------------------------------------------- /3rdparty/win32/dont_delete_me: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/win32/fftw-wisdom.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/fftw-wisdom.exe -------------------------------------------------------------------------------- /3rdparty/win32/fftw3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/fftw3.f -------------------------------------------------------------------------------- /3rdparty/win32/fftw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/fftw3.h -------------------------------------------------------------------------------- /3rdparty/win32/fftwf-wisdom.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/fftwf-wisdom.exe -------------------------------------------------------------------------------- /3rdparty/win32/fftwl-wisdom.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/fftwl-wisdom.exe -------------------------------------------------------------------------------- /3rdparty/win32/libfftw3-3.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/libfftw3-3.def -------------------------------------------------------------------------------- /3rdparty/win32/libfftw3-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/libfftw3-3.dll -------------------------------------------------------------------------------- /3rdparty/win32/libfftw3-3.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/libfftw3-3.exp -------------------------------------------------------------------------------- /3rdparty/win32/libfftw3-3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/libfftw3-3.lib -------------------------------------------------------------------------------- /3rdparty/win32/libfftw3f-3.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/libfftw3f-3.def -------------------------------------------------------------------------------- /3rdparty/win32/libfftw3f-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/libfftw3f-3.dll -------------------------------------------------------------------------------- /3rdparty/win32/libfftw3f-3.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/libfftw3f-3.exp -------------------------------------------------------------------------------- /3rdparty/win32/libfftw3f-3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/libfftw3f-3.lib -------------------------------------------------------------------------------- /3rdparty/win32/libfftw3l-3.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/libfftw3l-3.def -------------------------------------------------------------------------------- /3rdparty/win32/libfftw3l-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/libfftw3l-3.dll -------------------------------------------------------------------------------- /3rdparty/win32/libfftw3l-3.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/libfftw3l-3.exp -------------------------------------------------------------------------------- /3rdparty/win32/libfftw3l-3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win32/libfftw3l-3.lib -------------------------------------------------------------------------------- /3rdparty/win64/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/COPYING -------------------------------------------------------------------------------- /3rdparty/win64/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/COPYRIGHT -------------------------------------------------------------------------------- /3rdparty/win64/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/NEWS -------------------------------------------------------------------------------- /3rdparty/win64/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/README -------------------------------------------------------------------------------- /3rdparty/win64/README-WINDOWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/README-WINDOWS -------------------------------------------------------------------------------- /3rdparty/win64/README-bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/README-bench -------------------------------------------------------------------------------- /3rdparty/win64/bench.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/bench.exe -------------------------------------------------------------------------------- /3rdparty/win64/benchf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/benchf.exe -------------------------------------------------------------------------------- /3rdparty/win64/benchl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/benchl.exe -------------------------------------------------------------------------------- /3rdparty/win64/blitz.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz.lib -------------------------------------------------------------------------------- /3rdparty/win64/blitz/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/.cvsignore -------------------------------------------------------------------------------- /3rdparty/win64/blitz/CVS/Entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/CVS/Entries -------------------------------------------------------------------------------- /3rdparty/win64/blitz/CVS/Root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/CVS/Root -------------------------------------------------------------------------------- /3rdparty/win64/blitz/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/Makefile.am -------------------------------------------------------------------------------- /3rdparty/win64/blitz/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/Makefile.in -------------------------------------------------------------------------------- /3rdparty/win64/blitz/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/README -------------------------------------------------------------------------------- /3rdparty/win64/blitz/applics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/applics.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/array-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/array-impl.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/array-old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/array-old.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/array.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/array/bops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/array/bops.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/array/et.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/array/et.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/array/eval.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/array/eval.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/array/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/array/expr.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/array/funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/array/funcs.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/array/io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/array/io.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/array/iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/array/iter.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/array/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/array/map.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/array/misc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/array/misc.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/array/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/array/multi.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/array/newet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/array/newet.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/array/ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/array/ops.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/array/ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/array/ops.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/array/shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/array/shape.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/array/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/array/slice.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/array/uops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/array/uops.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/array/where.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/array/where.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/array/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/array/zip.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/bench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/bench.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/bench.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/benchext.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/benchext.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/benchext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/benchext.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/blitz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/blitz.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/bzconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/bzconfig.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/bzdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/bzdebug.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/compiler.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/config.h.in -------------------------------------------------------------------------------- /3rdparty/win64/blitz/etbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/etbase.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/extremum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/extremum.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/funcs.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/indexexpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/indexexpr.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/limits-hack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/limits-hack.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/listinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/listinit.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/matbops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/matbops.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/matdiag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/matdiag.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/matexpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/matexpr.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/matgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/matgen.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/mathf2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/mathf2.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/mathfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/mathfunc.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/matltri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/matltri.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/matref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/matref.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/matrix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/matrix.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/matrix.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/matsymm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/matsymm.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/mattoep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/mattoep.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/matuops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/matuops.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/matutri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/matutri.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/memblock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/memblock.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/memblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/memblock.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/meta/CVS/Root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/meta/CVS/Root -------------------------------------------------------------------------------- /3rdparty/win64/blitz/meta/dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/meta/dot.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/meta/matmat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/meta/matmat.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/meta/matvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/meta/matvec.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/meta/sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/meta/sum.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/minmax.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/ms/bzconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/ms/bzconfig.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/mstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/mstruct.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/numinquire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/numinquire.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/numtrait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/numtrait.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/ops.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/prettyprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/prettyprint.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/promote-old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/promote-old.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/promote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/promote.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/rand-dunif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/rand-dunif.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/rand-mt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/rand-mt.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/rand-normal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/rand-normal.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/rand-tt800.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/rand-tt800.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/random.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/randref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/randref.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/range.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/reduce.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/shapecheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/shapecheck.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/tau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/tau.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/timer.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/tiny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/tiny.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/tinymat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/tinymat.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/tinymatexpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/tinymatexpr.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/tinymatio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/tinymatio.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/tinyvec-et.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/tinyvec-et.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/tinyvec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/tinyvec.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/tinyvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/tinyvec.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/tinyvecio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/tinyvecio.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/tinyveciter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/tinyveciter.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/traversal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/traversal.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/traversal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/traversal.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/tuning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/tuning.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/tvcross.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/tvcross.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/tvecglobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/tvecglobs.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/update.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vecaccum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vecaccum.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vecall.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vecall.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vecany.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vecany.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vecbfn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vecbfn.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vecbops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vecbops.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/veccount.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/veccount.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vecdelta.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vecdelta.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vecdot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vecdot.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vecexpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vecexpr.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vecexprwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vecexprwrap.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vecglobs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vecglobs.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vecglobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vecglobs.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vecio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vecio.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/veciter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/veciter.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vecmax.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vecmax.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vecmin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vecmin.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vecnorm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vecnorm.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vecnorm1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vecnorm1.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vecpick.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vecpick.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vecpick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vecpick.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vecpickio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vecpickio.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vecpickiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vecpickiter.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vecproduct.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vecproduct.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vecsum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vecsum.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vector-et.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vector-et.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vector.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vector.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vecuops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vecuops.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vecwhere.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vecwhere.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/vecwhere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/vecwhere.h -------------------------------------------------------------------------------- /3rdparty/win64/blitz/zero.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/zero.cc -------------------------------------------------------------------------------- /3rdparty/win64/blitz/zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/blitz/zero.h -------------------------------------------------------------------------------- /3rdparty/win64/dont_delete_me: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/win64/fftw-wisdom.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/fftw-wisdom.exe -------------------------------------------------------------------------------- /3rdparty/win64/fftw3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/fftw3.f -------------------------------------------------------------------------------- /3rdparty/win64/fftw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/fftw3.h -------------------------------------------------------------------------------- /3rdparty/win64/fftwf-wisdom.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/fftwf-wisdom.exe -------------------------------------------------------------------------------- /3rdparty/win64/fftwl-wisdom.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/fftwl-wisdom.exe -------------------------------------------------------------------------------- /3rdparty/win64/libfftw3-3.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/libfftw3-3.def -------------------------------------------------------------------------------- /3rdparty/win64/libfftw3-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/libfftw3-3.dll -------------------------------------------------------------------------------- /3rdparty/win64/libfftw3-3.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/libfftw3-3.exp -------------------------------------------------------------------------------- /3rdparty/win64/libfftw3-3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/libfftw3-3.lib -------------------------------------------------------------------------------- /3rdparty/win64/libfftw3f-3.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/libfftw3f-3.def -------------------------------------------------------------------------------- /3rdparty/win64/libfftw3f-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/libfftw3f-3.dll -------------------------------------------------------------------------------- /3rdparty/win64/libfftw3f-3.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/libfftw3f-3.exp -------------------------------------------------------------------------------- /3rdparty/win64/libfftw3f-3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/libfftw3f-3.lib -------------------------------------------------------------------------------- /3rdparty/win64/libfftw3l-3.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/libfftw3l-3.def -------------------------------------------------------------------------------- /3rdparty/win64/libfftw3l-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/libfftw3l-3.dll -------------------------------------------------------------------------------- /3rdparty/win64/libfftw3l-3.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/libfftw3l-3.exp -------------------------------------------------------------------------------- /3rdparty/win64/libfftw3l-3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/3rdparty/win64/libfftw3l-3.lib -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/Makefile -------------------------------------------------------------------------------- /Ocean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/Ocean.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/README.md -------------------------------------------------------------------------------- /SOP_Cleave.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/SOP_Cleave.C -------------------------------------------------------------------------------- /SOP_Cleave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/SOP_Cleave.h -------------------------------------------------------------------------------- /SOP_Cleave.icon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/SOP_Cleave.icon -------------------------------------------------------------------------------- /SOP_Ocean.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/SOP_Ocean.C -------------------------------------------------------------------------------- /SOP_Ocean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/SOP_Ocean.h -------------------------------------------------------------------------------- /VEX_Ocean.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/VEX_Ocean.C -------------------------------------------------------------------------------- /VEXdso_Darwin: -------------------------------------------------------------------------------- 1 | VEX_Ocean.dylib 2 | -------------------------------------------------------------------------------- /VEXdso_Linux: -------------------------------------------------------------------------------- 1 | VEX_Ocean.so 2 | -------------------------------------------------------------------------------- /VEXdso_win32: -------------------------------------------------------------------------------- 1 | VEX_Ocean.dll 2 | 3 | -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/compile.sh -------------------------------------------------------------------------------- /examples/equivalent_geos.hip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/examples/equivalent_geos.hip -------------------------------------------------------------------------------- /examples/sop_flotsam.hip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/examples/sop_flotsam.hip -------------------------------------------------------------------------------- /examples/sop_mineigval.hip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/examples/sop_mineigval.hip -------------------------------------------------------------------------------- /examples/sop_simple.hip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/examples/sop_simple.hip -------------------------------------------------------------------------------- /examples/vop_displace.hip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/examples/vop_displace.hip -------------------------------------------------------------------------------- /examples/vopsop_foamparts.hip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/examples/vopsop_foamparts.hip -------------------------------------------------------------------------------- /examples/vopsop_two_sources.hip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/examples/vopsop_two_sources.hip -------------------------------------------------------------------------------- /otls/HOT.otl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloop/hot/HEAD/otls/HOT.otl --------------------------------------------------------------------------------