├── .github └── workflows │ ├── build.yml │ └── build_wheels.yml ├── .gitignore ├── CMakeLists.txt ├── CTestConfig.cmake ├── LICENSE.txt ├── README-package.txt ├── README-py.md ├── README.md ├── README.txt ├── Welcome.txt ├── applications ├── CMakeLists.txt ├── diag │ ├── CMakeLists.txt │ ├── diag.h │ ├── fulldiag │ │ ├── CMakeLists.txt │ │ ├── factory.C │ │ ├── factory.h │ │ ├── fulldiag.C │ │ ├── fulldiag.h │ │ ├── fulldiag_evaluate.C │ │ └── measurementplots.h │ ├── fulldiagfqhe │ │ ├── Makefile │ │ ├── fqheed.cpp │ │ ├── states_lll.c │ │ ├── states_lll_mz_minus_one.c │ │ └── vector_of_primes.c │ └── sparsediag │ │ ├── CMakeLists.txt │ │ ├── factory.C │ │ ├── factory.h │ │ ├── sparsediag.C │ │ └── sparsediag.h ├── dmft │ ├── CMakeLists.txt │ └── qmc │ │ ├── CMakeLists.txt │ │ ├── U_matrix.h │ │ ├── alps_solver.C │ │ ├── alps_solver.h │ │ ├── auxiliaryfunctions.C │ │ ├── bandstructure.C │ │ ├── bandstructure.h │ │ ├── externalsolver.C │ │ ├── externalsolver.h │ │ ├── fouriertransform.C │ │ ├── fouriertransform.h │ │ ├── green_function.h │ │ ├── hilberttransformer.C │ │ ├── hilberttransformer.h │ │ ├── hirschfyeaux.h │ │ ├── hirschfyesim.C │ │ ├── hirschfyesim.h │ │ ├── hybridization │ │ ├── Documentation │ │ │ ├── Makefile │ │ │ ├── hybdoc.pdf │ │ │ ├── hybdoc.tex │ │ │ └── refs.bib │ │ ├── hyb.hpp │ │ ├── hybblasmatrix.hpp │ │ ├── hybconfig.cpp │ │ ├── hybconfig.hpp │ │ ├── hybevaluate.cpp │ │ ├── hybevaluate.hpp │ │ ├── hybfun.cpp │ │ ├── hybfun.hpp │ │ ├── hybint.cpp │ │ ├── hybint.hpp │ │ ├── hyblocal.cpp │ │ ├── hyblocal.hpp │ │ ├── hybmain.cpp │ │ ├── hybmatrix.cpp │ │ ├── hybmatrix.hpp │ │ ├── hybmatrix_ft.cpp │ │ ├── hybmeasurements.cpp │ │ ├── hybretintfun.cpp │ │ ├── hybretintfun.hpp │ │ ├── hybsegment.hpp │ │ ├── hybsim.cpp │ │ └── hybupdates.cpp │ │ ├── interaction_expansion │ │ ├── auxiliary.cpp │ │ ├── fastupdate.cpp │ │ ├── green_matrix.hpp │ │ ├── interaction_expansion.cpp │ │ ├── interaction_expansion.hpp │ │ ├── io.cpp │ │ ├── measurements.cpp │ │ ├── model.cpp │ │ ├── observables.cpp │ │ ├── operator.hpp │ │ ├── selfenergy.cpp │ │ ├── solver.cpp │ │ └── splines.cpp │ │ ├── interaction_expansion2 │ │ ├── auxiliary.cpp │ │ ├── fastupdate.cpp │ │ ├── green_matrix.hpp │ │ ├── interaction_expansion.cpp │ │ ├── interaction_expansion.hpp │ │ ├── io.cpp │ │ ├── main.cpp │ │ ├── measurements.cpp │ │ ├── model.cpp │ │ ├── observables.cpp │ │ ├── operator.hpp │ │ ├── selfenergy.cpp │ │ ├── solver.cpp │ │ └── splines.cpp │ │ ├── main.C │ │ ├── selfconsistency.C │ │ ├── selfconsistency.h │ │ ├── solver.h │ │ ├── solver_main.C │ │ ├── types.h │ │ └── xml.h ├── dmrg │ ├── CMakeLists.txt │ ├── dmrg │ │ ├── CMakeLists.txt │ │ ├── dmrg.C │ │ ├── dmrg.h │ │ ├── dmtk │ │ │ ├── array_util.h │ │ │ ├── basis.h │ │ │ ├── bits.h │ │ │ ├── block.h │ │ │ ├── block_matrix.h │ │ │ ├── conj.h │ │ │ ├── constants.h │ │ │ ├── cslice_implement.h │ │ │ ├── ctimer.h │ │ │ ├── dmtk.h │ │ │ ├── enums.h │ │ │ ├── globals.h │ │ │ ├── gslice_implement.h │ │ │ ├── gslice_iter.h │ │ │ ├── hami.h │ │ │ ├── lanczos.cc │ │ │ ├── lapack_interface.h │ │ │ ├── lattice.h │ │ │ ├── matrix.h │ │ │ ├── matrix_implement.h │ │ │ ├── meta.h │ │ │ ├── operators.h │ │ │ ├── qn.h │ │ │ ├── range.h │ │ │ ├── slice_implement.h │ │ │ ├── slice_iter.h │ │ │ ├── state.h │ │ │ ├── state_slice.h │ │ │ ├── subspace.h │ │ │ ├── system.h │ │ │ ├── util.h │ │ │ ├── vector.h │ │ │ └── vector_implement.h │ │ ├── factory.C │ │ └── factory.h │ ├── mps │ │ ├── ALPS_MPSConfig.cmake.in │ │ ├── CMakeLists.txt │ │ ├── Doxyfile.in │ │ ├── doc │ │ │ ├── alps_mps.md │ │ │ ├── filemap.dox │ │ │ ├── img │ │ │ │ └── local_at_value.svg │ │ │ ├── parameters.md │ │ │ ├── refs.bib │ │ │ ├── simulation_files.md │ │ │ └── stop_simulation.md │ │ ├── examples │ │ │ ├── CMakeLists.txt │ │ │ └── mps_apply_op.cpp │ │ ├── framework │ │ │ ├── dmrg │ │ │ │ ├── block_matrix │ │ │ │ │ ├── block_matrix.h │ │ │ │ │ ├── block_matrix.hpp │ │ │ │ │ ├── block_matrix_algorithms.h │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── alps.hpp │ │ │ │ │ │ ├── alps_detail.hpp │ │ │ │ │ │ └── one_matrix.hpp │ │ │ │ │ ├── grouped_symmetry.h │ │ │ │ │ ├── indexing.h │ │ │ │ │ ├── indexing_sorted.hpp │ │ │ │ │ ├── indexing_stable.hpp │ │ │ │ │ ├── indexing_unsorted.hpp │ │ │ │ │ ├── multi_index.h │ │ │ │ │ ├── symmetry.cpp │ │ │ │ │ ├── symmetry.h │ │ │ │ │ └── symmetry │ │ │ │ │ │ ├── 2u1.h │ │ │ │ │ │ ├── 3u1.h │ │ │ │ │ │ ├── none.h │ │ │ │ │ │ ├── nu1.h.in │ │ │ │ │ │ ├── nu1_tpl.h │ │ │ │ │ │ ├── u1.h │ │ │ │ │ │ ├── z2.h │ │ │ │ │ │ └── zq.h │ │ │ │ ├── evolve │ │ │ │ │ ├── te_utils.hpp │ │ │ │ │ ├── tevol_mpo_sim.h │ │ │ │ │ ├── tevol_nn_sim.h │ │ │ │ │ └── trotter_decomposer.h │ │ │ │ ├── models │ │ │ │ │ ├── alps │ │ │ │ │ │ ├── lattice.hpp │ │ │ │ │ │ ├── model.hpp │ │ │ │ │ │ ├── symm_handler.hpp │ │ │ │ │ │ └── symm_handler_impl │ │ │ │ │ │ │ ├── model_2u1.cpp │ │ │ │ │ │ │ ├── model_Ztwo.cpp │ │ │ │ │ │ │ ├── model_none.cpp │ │ │ │ │ │ │ ├── model_nu1.cpp │ │ │ │ │ │ │ └── model_u1.cpp │ │ │ │ │ ├── coded │ │ │ │ │ │ ├── factory.h │ │ │ │ │ │ ├── factory_2u1.hpp │ │ │ │ │ │ ├── factory_Ztwo.hpp │ │ │ │ │ │ ├── factory_lattice.hpp │ │ │ │ │ │ ├── factory_none.hpp │ │ │ │ │ │ ├── factory_nu1.hpp │ │ │ │ │ │ ├── factory_u1.hpp │ │ │ │ │ │ ├── lattice.hpp │ │ │ │ │ │ ├── models_2u1.hpp │ │ │ │ │ │ ├── models_none.hpp │ │ │ │ │ │ ├── models_u1.hpp │ │ │ │ │ │ └── super_models_none.hpp │ │ │ │ │ ├── factory │ │ │ │ │ │ ├── initializer_factory.h │ │ │ │ │ │ ├── lattice_factory.cpp │ │ │ │ │ │ ├── matrices.h │ │ │ │ │ │ ├── model_factory_2u1.cpp │ │ │ │ │ │ ├── model_factory_Ztwo.cpp │ │ │ │ │ │ ├── model_factory_none.cpp │ │ │ │ │ │ ├── model_factory_nu1.cpp │ │ │ │ │ │ ├── model_factory_symm.h │ │ │ │ │ │ └── model_factory_u1.cpp │ │ │ │ │ ├── generate_mpo.hpp │ │ │ │ │ ├── generate_mpo │ │ │ │ │ │ ├── corr_maker.hpp │ │ │ │ │ │ ├── mpo_maker.hpp │ │ │ │ │ │ ├── tagged_mpo_maker_optim.hpp │ │ │ │ │ │ └── utils.hpp │ │ │ │ │ ├── lattice.h │ │ │ │ │ ├── meas_prepare.hpp │ │ │ │ │ ├── measurement.h │ │ │ │ │ ├── measurement_parser.hpp │ │ │ │ │ ├── measurement_term_desc.hpp │ │ │ │ │ ├── measurements.h │ │ │ │ │ ├── measurements │ │ │ │ │ │ ├── average.h │ │ │ │ │ │ ├── correlations.h │ │ │ │ │ │ ├── custom.h │ │ │ │ │ │ ├── entanglement.h │ │ │ │ │ │ ├── local.h │ │ │ │ │ │ ├── local_at.h │ │ │ │ │ │ └── overlap.h │ │ │ │ │ ├── model.h │ │ │ │ │ ├── op_handler.h │ │ │ │ │ ├── op_handler.hpp │ │ │ │ │ ├── tag_detail.h │ │ │ │ │ └── term_descriptor.h │ │ │ │ ├── mp_tensors │ │ │ │ │ ├── basis_sector_iterators.h │ │ │ │ │ ├── boundary.h │ │ │ │ │ ├── coherent_init.h │ │ │ │ │ ├── compression.h │ │ │ │ │ ├── contractions.h │ │ │ │ │ ├── dm_op_kron.h │ │ │ │ │ ├── identity_mps.h │ │ │ │ │ ├── joins.hpp │ │ │ │ │ ├── mpo.h │ │ │ │ │ ├── mpo_contractor.h │ │ │ │ │ ├── mpo_contractor_base.h │ │ │ │ │ ├── mpo_contractor_ss.h │ │ │ │ │ ├── mpo_contractor_ts.h │ │ │ │ │ ├── mpo_manip.h │ │ │ │ │ ├── mpo_ops.h │ │ │ │ │ ├── mpotensor.h │ │ │ │ │ ├── mpotensor.hpp │ │ │ │ │ ├── mpotensor_detail.h │ │ │ │ │ ├── mpotensor_manip.h │ │ │ │ │ ├── mps.h │ │ │ │ │ ├── mps.hpp │ │ │ │ │ ├── mps_initializers.h │ │ │ │ │ ├── mps_mpo_ops.h │ │ │ │ │ ├── mps_reflect.h │ │ │ │ │ ├── mps_sectors.h │ │ │ │ │ ├── mpstensor.h │ │ │ │ │ ├── mpstensor.hpp │ │ │ │ │ ├── reduced_mps.h │ │ │ │ │ ├── reshapes.h │ │ │ │ │ ├── special_mpos.h │ │ │ │ │ ├── state_mps.h │ │ │ │ │ ├── super_mpo.h │ │ │ │ │ ├── ts_ops.h │ │ │ │ │ ├── ts_reshape.h │ │ │ │ │ ├── twositetensor.h │ │ │ │ │ └── twositetensor.hpp │ │ │ │ ├── optimize │ │ │ │ │ ├── anasazi_solver.h │ │ │ │ │ ├── ietl_jacobi_davidson.h │ │ │ │ │ ├── ietl_lanczos_solver.h │ │ │ │ │ ├── optimize.h │ │ │ │ │ ├── ss_optimize.hpp │ │ │ │ │ └── ts_optimize.hpp │ │ │ │ ├── sim │ │ │ │ │ ├── matrix_types.h │ │ │ │ │ ├── sim.h │ │ │ │ │ ├── sim.hpp │ │ │ │ │ └── symmetry_factory.h │ │ │ │ ├── utils │ │ │ │ │ ├── BaseParameters.h │ │ │ │ │ ├── DmrgParameters.h │ │ │ │ │ ├── archive.h │ │ │ │ │ ├── logger.h │ │ │ │ │ ├── parallel_for.hpp │ │ │ │ │ ├── parameter_proxy.h │ │ │ │ │ ├── placement.h │ │ │ │ │ ├── random.hpp │ │ │ │ │ ├── results_collector.h │ │ │ │ │ ├── simulation_terminated_exception.h │ │ │ │ │ ├── stop_callbacks.h │ │ │ │ │ ├── stop_callbacks │ │ │ │ │ │ ├── rel_energy_callback.h │ │ │ │ │ │ ├── stop_callback_base.h │ │ │ │ │ │ └── time_limit_callback.h │ │ │ │ │ ├── storage.h │ │ │ │ │ ├── time_limit_exception.h │ │ │ │ │ ├── time_stopper.cpp │ │ │ │ │ ├── time_stopper.h │ │ │ │ │ ├── utils.cpp │ │ │ │ │ └── utils.hpp │ │ │ │ └── version.h │ │ │ └── utils │ │ │ │ ├── bindings.hpp │ │ │ │ ├── debug_mpi.h │ │ │ │ ├── function_objects.h │ │ │ │ ├── io.hpp │ │ │ │ ├── sizeof.h │ │ │ │ ├── timings.h │ │ │ │ └── traits.hpp │ │ ├── libpscan │ │ │ ├── options.cpp │ │ │ ├── options.hpp │ │ │ ├── run_sim.hpp │ │ │ ├── scheduler.cpp │ │ │ └── scheduler.hpp │ │ ├── mps_compress │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── mps_eigenstate_sims │ │ │ ├── CMakeLists.txt │ │ │ ├── dmrg_sim.hpp │ │ │ ├── mps_meas.cpp │ │ │ ├── mps_optim.cpp │ │ │ ├── run_eigenstate_sim.hpp │ │ │ ├── run_measure.cpp │ │ │ ├── run_optim.cpp │ │ │ ├── simulation.hpp │ │ │ ├── simulation.ipp │ │ │ └── simulation_symm │ │ │ │ └── simulation_tpl.cpp.in │ │ ├── mps_evolve │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── run_sim.cpp │ │ │ ├── simulation.hpp │ │ │ ├── simulation.ipp │ │ │ ├── simulation_symm │ │ │ │ └── simulation_tpl.cpp.in │ │ │ └── tevol_sim.hpp │ │ ├── mps_overlap │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── symmetries.cmake │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── custom_lattice.xml │ │ │ ├── measurements.cpp │ │ │ ├── measurements_ref.h5 │ │ │ ├── parse_measurements.cpp │ │ │ ├── parse_measurements.output │ │ │ ├── product_operator.cpp │ │ │ ├── product_operator.output │ │ │ ├── trotter_decomp.cpp │ │ │ ├── trotter_decomp.output │ │ │ ├── unpack_measurement_terms.cpp │ │ │ └── unpack_measurement_terms.output │ └── tebd │ │ ├── CMakeLists.txt │ │ ├── core │ │ ├── GlobalData.f90 │ │ ├── HamiOps.f90 │ │ ├── Hdf5Interface.f90 │ │ ├── LinearOps.f90 │ │ ├── LocalOps.f90 │ │ ├── ObOps.f90 │ │ ├── PropOps.f90 │ │ └── StateOps.f90 │ │ └── tebd.f90 ├── mc │ ├── CMakeLists.txt │ ├── simple │ │ ├── CMakeLists.txt │ │ ├── evaluator.C │ │ ├── evaluator.h │ │ ├── heisenberg.C │ │ ├── heisenberg.h │ │ ├── heisenberg.ip │ │ ├── heisenberg.op │ │ ├── ising.C │ │ ├── ising.h │ │ ├── ising.ip │ │ ├── ising.op │ │ ├── main.C │ │ ├── vtk.h │ │ ├── xy.C │ │ ├── xy.h │ │ ├── xy.ip │ │ └── xy.op │ └── spins │ │ ├── CMakeLists.txt │ │ ├── abstract_fitter.C │ │ ├── abstractspinsim.h │ │ ├── base_incr_fitter.C │ │ ├── clusterupdate.h │ │ ├── connect.h │ │ ├── dummy_fitter.C │ │ ├── est_grad_fitter.C │ │ ├── factory.h │ │ ├── faststack.h │ │ ├── fit.C │ │ ├── fitter.h │ │ ├── fitting_scheduler.C │ │ ├── fitting_scheduler.h │ │ ├── helper.h │ │ ├── ising.h │ │ ├── lapack.h │ │ ├── localupdate.h │ │ ├── matrices.h │ │ ├── on.h │ │ ├── potts.h │ │ ├── spinmc.C │ │ ├── spinmc_evaluate.C │ │ ├── spinmc_factory.C │ │ ├── spinsim.h │ │ ├── tinyvec.h │ │ └── xy.h ├── qmc │ ├── CMakeLists.txt │ ├── checksign │ │ ├── CMakeLists.txt │ │ └── checksign.C │ ├── dwa │ │ ├── CMakeLists.txt │ │ ├── bandstructure.hpp │ │ ├── dwa.cpp │ │ ├── dwa.hpp │ │ ├── python │ │ │ └── dwa.cpp │ │ └── worldlines.hpp │ ├── looper │ │ ├── CMakeLists.txt │ │ ├── ChangeLog │ │ ├── IMPORT │ │ ├── doc │ │ │ ├── anneal.jpg │ │ │ └── index.html │ │ ├── loop.C │ │ ├── loop_config.h │ │ ├── loop_custom.C │ │ ├── loop_model.C │ │ ├── looper │ │ │ ├── alternating_tensor.h │ │ │ ├── cluster.h │ │ │ ├── correlation.h │ │ │ ├── crop.h │ │ │ ├── custom.h │ │ │ ├── custom_impl.h │ │ │ ├── divide_if_positive.h │ │ │ ├── evaluator.h │ │ │ ├── evaluator_impl.h │ │ │ ├── graph.h │ │ │ ├── graph_impl.h │ │ │ ├── integer_range.h │ │ │ ├── lapack.h │ │ │ ├── lattice.h │ │ │ ├── location.h │ │ │ ├── location_impl.h │ │ │ ├── matrix.h │ │ │ ├── measurement.h │ │ │ ├── model.h │ │ │ ├── model_impl.h │ │ │ ├── model_parameter.h │ │ │ ├── montecarlo.h │ │ │ ├── operator.h │ │ │ ├── permutation.h │ │ │ ├── power.h │ │ │ ├── random_choice.h │ │ │ ├── stiffness.h │ │ │ ├── susceptibility.h │ │ │ ├── temperature.h │ │ │ ├── time.h │ │ │ ├── type.h │ │ │ ├── union_find.h │ │ │ ├── version.h │ │ │ ├── weight.h │ │ │ └── weight_impl.h │ │ ├── path_integral.C │ │ └── sse.C │ ├── qmc.h │ ├── qmc.ngs.h │ ├── qwl │ │ ├── CMakeLists.txt │ │ ├── qwl.C │ │ ├── qwl_evaluate.C │ │ ├── qwl_histogram.h │ │ └── qwl_sse.h │ ├── sse │ │ ├── CMakeLists.txt │ │ ├── SSE.Classes.hpp │ │ ├── SSE.Directed.cpp │ │ ├── SSE.Initialization.cpp │ │ ├── SSE.Measurements.cpp │ │ ├── SSE.Update.cpp │ │ ├── SSE.cpp │ │ ├── SSE.hpp │ │ ├── conventions.txt │ │ └── evaluate.C │ ├── sse2 │ │ ├── SSE.Classes.hpp │ │ ├── SSE.Directed.cpp │ │ ├── SSE.Histogram.hpp │ │ ├── SSE.Initialization.cpp │ │ ├── SSE.Measurements.cpp │ │ ├── SSE.Update.cpp │ │ ├── SSE.cpp │ │ ├── SSE.hpp │ │ ├── doc │ │ │ ├── SSE2_Tutorial.txt │ │ │ ├── calc_oe_weights.nb │ │ │ ├── extract_histogram.xsl │ │ │ ├── extract_histoup.xsl │ │ │ └── extract_logg.xsl │ │ └── semantic.cache │ ├── sse4 │ │ ├── CMakeLists.txt │ │ ├── lattice.h │ │ ├── lp_sse.cpp │ │ ├── lp_sse.h │ │ ├── main.cc │ │ ├── measurement.h │ │ ├── model.h │ │ ├── sse.h │ │ ├── sse_alg.h │ │ ├── sse_alg_def.h │ │ └── sse_worm_prob.h │ └── worms │ │ ├── CMakeLists.txt │ │ ├── WKink.h │ │ ├── WModel.C │ │ ├── WRun.C │ │ ├── WRun.h │ │ ├── Wcheck.C │ │ ├── Wdostep.C │ │ ├── Winit.C │ │ ├── Wmeas.C │ │ ├── cyclic_iterator.h │ │ ├── evaluate.C │ │ ├── main.C │ │ ├── random.h │ │ └── time_struct.h └── test │ ├── energy.xsl.in │ ├── mc │ └── spins │ │ ├── check.sh.in │ │ ├── energy.xml │ │ ├── heisenberg_chain.parm.in │ │ ├── heisenberg_ladder.parm.in │ │ ├── ising_cluster.parm.in │ │ ├── ising_local.parm.in │ │ ├── lattices.xml │ │ ├── result.heisenberg_chain.parm.txt.output │ │ ├── result.heisenberg_ladder.parm.txt.output │ │ ├── result.ising_cluster.parm.txt.output │ │ ├── result.ising_local.parm.txt.output │ │ └── susceptibility.xml │ ├── parm.in │ ├── parm_boson.in │ ├── parm_fermion.in │ ├── parm_fermion2.in │ ├── qwl │ └── parm.in │ └── sparsediag │ └── groundstate.xsl.in ├── config ├── ALPSBuildname.cmake ├── ALPSChooseCompiler.cmake ├── ALPSConfig.cmake.in ├── ALPSCore.cmake ├── ALPSTesting.cmake ├── BoostUtils.cmake ├── CMakeLists.txt ├── CheckProcessorID.cmake ├── Compilers.cmake ├── CrayXT.cmake ├── Distribution.xml.in ├── FindApache.cmake ├── FindBlitz.cmake ├── FindBoostForALPS.cmake ├── FindBoostSrc.cmake ├── FindDocbookDtd.cmake ├── FindDocbookXsl.cmake ├── FindFFTW.cmake ├── FindFop.cmake ├── FindLPSolve.cmake ├── FindLapack.cmake ├── FindMPIForALPS.cmake ├── FindPyInstaller.cmake ├── FindPythonMod.cmake ├── FindSQLite.cmake ├── FindSZIP.cmake ├── FindSphinx.cmake ├── FindSprng.cmake ├── FindVistrails.cmake ├── FindVistrailsGit.cmake ├── FindXsltproc.cmake ├── FindZLIB.cmake ├── GNUCompilers.cmake ├── IA32Compilers.cmake ├── IBMCompilers.cmake ├── Intel7.cmake ├── IntelAbe.cmake ├── IntelCompilers.cmake ├── KCCCompilers.cmake ├── MacPKG.cmake ├── UseALPS.cmake ├── UsePyInstaller.cmake ├── add_alps_test.cmake ├── alps_logo.png ├── brutus-intel12.cmake ├── brutus-mkl12.cmake ├── cray.cmake ├── debian │ └── sid │ │ ├── .bzr-builddeb │ │ └── default.conf │ │ ├── .bzrignore │ │ ├── README.source │ │ ├── alps-applications.install │ │ ├── alps-tutorials.install │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── libalps-bin.install │ │ ├── libalps-dev.install │ │ ├── libalps-dev.links │ │ ├── libalps.install │ │ ├── libboost-numeric-bindings-dev.install │ │ ├── python-pyalps.install │ │ ├── rules │ │ └── source │ │ └── format ├── include.mk.in ├── make_package.sh.in ├── monch-intel.cmake ├── passthru.py ├── preamble-light.in ├── preamble.in ├── preamble_py.in ├── py-compile ├── rosa.cmake ├── run_test.cmake ├── run_test_mpi.cmake ├── t2k-intel11.cmake ├── todi.cmake ├── update_preamble └── update_preamble_py ├── doc ├── CMakeLists.txt ├── autodoc.in ├── bb2db.in ├── catalog.xml.in ├── db2html.in ├── db2pdf.in ├── doxygen.conf.in ├── olddoc │ ├── alea │ │ ├── abstractsimpleobservable.html │ │ ├── binning.html │ │ ├── index.html │ │ ├── observable.html │ │ ├── observableset.html │ │ ├── obsvalue.html │ │ ├── recordableobservable.html │ │ ├── signedobservable.html │ │ ├── simpleobservable.html │ │ └── simpleobseval.html │ ├── bitops.html │ ├── config.html │ ├── expression.html │ ├── fixed_capacity.html │ ├── functional.html │ ├── index-light.html │ ├── index.html │ ├── index_general.html │ ├── lattice │ │ ├── boundary.html │ │ ├── coordinatelattice.html │ │ ├── disorder.html │ │ ├── graph.html │ │ ├── graph_helper.html │ │ ├── graph_traits.html │ │ ├── graphconcepts.html │ │ ├── graphproperties.html │ │ ├── helperconcepts.html │ │ ├── hypercubic.html │ │ ├── index.html │ │ ├── lattice.html │ │ ├── latticeconcepts.html │ │ ├── latticedescriptor.html │ │ ├── latticegraph.html │ │ ├── latticegraphdescriptor.html │ │ ├── latticelibrary.html │ │ ├── parity.html │ │ ├── propertymap.html │ │ ├── simplecell.html │ │ ├── simplelattice.html │ │ └── unitcell.html │ ├── math.html │ ├── model │ │ └── index.html │ ├── osiris │ │ ├── comm.html │ │ ├── dump.html │ │ ├── index.html │ │ ├── mpdump.html │ │ ├── os.html │ │ ├── process.html │ │ ├── stdmap.html │ │ ├── stdpair.html │ │ ├── stdstring.html │ │ ├── stdvalarray.html │ │ ├── stdvector.html │ │ └── xdrdump.html │ ├── parameterlist.html │ ├── parameters.html │ ├── parser │ │ ├── index.html │ │ ├── parser.html │ │ ├── xmlattributes.html │ │ └── xmlstream.html │ ├── random.html │ ├── scheduler │ │ ├── implementing.html │ │ ├── index.html │ │ ├── montecarlo.html │ │ ├── running.html │ │ ├── scheduler.html │ │ └── signal.html │ ├── setup.html │ ├── stringvalue.html │ ├── tool │ │ ├── archive.html │ │ ├── browse.png │ │ ├── extract.png │ │ ├── index.html │ │ ├── plot.png │ │ ├── rebuild.kb.png │ │ └── rebuild.tuple.png │ ├── typetraits.html │ ├── vectormath.html │ └── vectortraits.html ├── papers │ ├── alps │ │ ├── Makefile │ │ ├── README.txt │ │ ├── alps20.bbl │ │ ├── alps20.pdf │ │ ├── alps20.tex │ │ ├── cached │ │ │ ├── alps.comp-phys.org_vistrails_3306_15_332_pdf.tex │ │ │ ├── alps.ethz.ch_vistrails_3306_10_169_pdf.tex │ │ │ ├── alps.ethz.ch_vistrails_3306_10_169_pdf_graph.tex │ │ │ └── alps.ethz.ch_vistrails_3306_10_pdf.tex │ │ ├── figures │ │ │ ├── alps_provenance_types.pdf │ │ │ ├── alps_provenance_types │ │ │ │ ├── alps_provenance_types.ai │ │ │ │ ├── result.pdf │ │ │ │ ├── workflow.pdf │ │ │ │ └── workflow_instance.pdf │ │ │ ├── alps_tree.png │ │ │ ├── alps_tree │ │ │ │ ├── alps_tree.ai │ │ │ │ ├── builder_window.png │ │ │ │ ├── exponential_and_linear.pdf │ │ │ │ ├── exponential_fit.pdf │ │ │ │ ├── notes.png │ │ │ │ ├── s_equals_0.5.pdf │ │ │ │ ├── s_equals_1.pdf │ │ │ │ └── workflow.pdf │ │ │ ├── croos-tree-3.png │ │ │ └── provenance_types.pdf │ │ ├── includevistrail.py │ │ ├── iopams.sty │ │ ├── iopart.cls │ │ ├── iopart10.clo │ │ ├── iopart12.clo │ │ ├── refs.bib │ │ ├── vistrails.sty │ │ └── vistrails_images │ │ │ ├── alps.comp-phys.org_vistrails_3306_15_332_pdf │ │ │ ├── 291afe8abedfc9c7303b6b5fa832309a.vtl │ │ │ └── alps_paper_exploration_332.pdf │ │ │ ├── alps.ethz.ch_vistrails_3306_10_169_pdf │ │ │ ├── 7e766f827f1bad8c8df574a0cc6135ce.vtl │ │ │ └── susceptibilities_None.pdf │ │ │ ├── alps.ethz.ch_vistrails_3306_10_169_pdf_graph │ │ │ ├── 7e766f827f1bad8c8df574a0cc6135ce.vtl │ │ │ └── graph_10_169.pdf │ │ │ └── alps.ethz.ch_vistrails_3306_10_pdf │ │ │ ├── 577d23d03ef2d80432809613e7f083ac.vtl │ │ │ └── graph_10.pdf │ └── dmft │ │ ├── Makefile │ │ ├── codes.pdf │ │ ├── codes.tex │ │ ├── green.eps │ │ ├── green_G0_tau.ps │ │ ├── green_it_G0_tau.ps │ │ ├── green_it_G_tau.ps │ │ ├── greensplot.tar.bz2 │ │ ├── loop.eps │ │ ├── loop.tex │ │ ├── param_hyb │ │ ├── param_int │ │ ├── refs.bib │ │ ├── refs_shortened.bib │ │ ├── se.eps │ │ ├── se.xmgr │ │ ├── sigma.eps │ │ ├── sigmaplot.tar.bz2 │ │ └── strip.py ├── singledoc.in ├── sphinx │ ├── HOWTO │ ├── Makefile │ ├── alea.txt │ ├── conf.py │ ├── dataset.txt │ ├── dict_intersect.txt │ ├── fit_wrapper.txt │ ├── floatwitherror.txt │ ├── hdf5.txt │ ├── hlist.txt │ ├── load.txt │ ├── math.txt │ ├── modules.txt │ ├── plot.txt │ ├── plot_core.txt │ ├── pyalps.txt │ ├── pyalps_build │ │ └── doctrees │ │ │ ├── alea.doctree │ │ │ ├── dataset.doctree │ │ │ ├── dict_intersect.doctree │ │ │ ├── environment.pickle │ │ │ ├── fit_wrapper.doctree │ │ │ ├── floatwitherror.doctree │ │ │ ├── hdf5.doctree │ │ │ ├── hlist.doctree │ │ │ ├── load.doctree │ │ │ ├── math.doctree │ │ │ ├── modules.doctree │ │ │ ├── plot.doctree │ │ │ ├── plot_core.doctree │ │ │ ├── pyalps.doctree │ │ │ ├── pytools.doctree │ │ │ └── tools.doctree │ ├── pytools.txt │ └── tools.txt ├── src │ ├── alea.qbk │ ├── alps.qbk │ ├── alps_logo.gif │ ├── general.qbk │ ├── hdf5.qbk │ ├── ietl.qbk │ ├── ietl.qbk.in │ ├── images │ │ ├── home.png │ │ ├── next.png │ │ ├── note.png │ │ ├── prev.png │ │ └── up.png │ ├── lattice.qbk │ ├── model.qbk │ ├── osiris.qbk │ ├── overview.qbk │ ├── parser.qbk │ ├── random.qbk │ ├── scheduler.qbk │ └── tools.qbk └── xsl │ ├── html.xsl │ └── navbar.xsl ├── docs ├── API │ ├── introduction.rst │ ├── ngs │ │ ├── hash.rst │ │ ├── scheduler.rst │ │ └── signals.rst │ └── numeric │ │ └── matrix │ │ ├── matrix.rst │ │ └── matrix_concept.rst ├── APIP │ └── introduction.rst ├── CMakeLists.txt ├── Makefile ├── README.rst ├── _static │ ├── alps_logo.png │ └── alps_side.gif ├── _templates │ └── layout.html ├── conf.py.in ├── doxygen.conf.in ├── ext │ ├── breathe │ │ ├── __init__.py │ │ ├── finder │ │ │ ├── __init__.py │ │ │ └── doxygen │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── compound.py │ │ │ │ └── index.py │ │ ├── parser │ │ │ ├── __init__.py │ │ │ └── doxygen │ │ │ │ ├── __init__.py │ │ │ │ ├── compound.py │ │ │ │ ├── compoundsuper.py │ │ │ │ ├── index.py │ │ │ │ └── indexsuper.py │ │ └── renderer │ │ │ ├── __init__.py │ │ │ └── rst │ │ │ ├── __init__.py │ │ │ └── doxygen │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── compound.py │ │ │ ├── domain.py │ │ │ ├── filter.py │ │ │ ├── index.py │ │ │ └── target.py │ ├── gasp │ │ ├── __init__.py │ │ ├── concept.py │ │ ├── doxtools.py │ │ ├── doxygen.py │ │ └── templates │ │ │ ├── class │ │ │ ├── members.html │ │ │ └── synopsis.html │ │ │ ├── concept │ │ │ ├── _complexity_table.html │ │ │ ├── _naming.html │ │ │ ├── _semantics_table.html │ │ │ ├── _synopsis_table.html │ │ │ ├── _validexpr_table.html │ │ │ ├── complexity.html │ │ │ ├── description.html │ │ │ ├── extensive.html │ │ │ ├── semantics.html │ │ │ ├── synopsis.html │ │ │ └── validexpr.html │ │ │ └── test.html │ └── viewcode_patched.py ├── get_gasp.in ├── index.rst ├── license │ └── license.rst ├── make.bat ├── tutorials │ ├── index.rst │ └── scheduler │ │ ├── code │ │ ├── main.py │ │ ├── mpi │ │ │ ├── Makefile │ │ │ ├── isingmpi.cpp │ │ │ ├── isingmpi.hpp │ │ │ └── main.cpp │ │ └── single │ │ │ ├── Makefile │ │ │ ├── ising.cpp │ │ │ ├── ising.hpp │ │ │ └── main.cpp │ │ ├── export2py.rst │ │ ├── mpi.rst │ │ ├── python.rst │ │ └── single.rst └── userguide │ ├── installation.rst │ ├── introduction.rst │ └── tutorials ├── example ├── CMakeLists.txt ├── alea │ ├── CMakeLists.txt │ ├── example_autocorrelation.cpp │ ├── example_autocorrelation.py │ ├── example_error.cpp │ ├── example_error.py │ ├── example_mean.cpp │ ├── example_mean.py │ ├── example_running_mean.cpp │ ├── example_running_mean.py │ ├── example_variance.cpp │ ├── example_variance.py │ └── testfile.h5 ├── fortran │ ├── CMakeLists.txt │ ├── hello │ │ ├── CMakeLists.txt │ │ ├── hello_fortran.ip │ │ ├── hello_fortran.op │ │ ├── hello_impl.f90 │ │ └── main.C │ └── ising │ │ ├── CMakeLists.txt │ │ ├── ising_fortran.ip │ │ ├── ising_fortran.op │ │ ├── ising_impl.f90 │ │ └── main.C ├── hdf5 │ ├── CMakeLists.txt │ ├── enum_as_class.cpp │ ├── enum_vectorizable.cpp │ └── pair_int_vectorizable.cpp ├── ietl │ ├── CMakeLists.txt │ ├── arnoldi1.h │ ├── arnoldi1_complex.cpp │ ├── arnoldi1_real.cpp │ ├── jacobi.cpp │ ├── jacobidavidson1.cpp │ ├── jacobidavidson2.cpp │ ├── lanczos1.cpp │ ├── lanczos2.cpp │ ├── lanczos3.cpp │ ├── lanczos4.cpp │ ├── lanczos5.cpp │ ├── lanczos_checkpoint.cpp │ ├── lanczos_checkpoint_complex.cpp │ ├── lanczos_resume.cpp │ ├── lanczos_resume_complex.cpp │ ├── power1.cpp │ ├── power2.cpp │ └── solver.h ├── model │ ├── CMakeLists.txt │ ├── matrix.h │ ├── parm_numeric.in │ ├── parm_symbolic.in │ ├── print_numeric.cpp │ ├── print_numeric2.cpp │ ├── print_numeric3.cpp │ ├── print_symbolic.cpp │ ├── print_symbolic2.cpp │ └── print_symbolic3.cpp ├── ngs │ ├── CMakeLists.txt │ └── alea │ │ ├── CMakeLists.txt │ │ ├── custom_accum.hpp │ │ ├── example_accumulator.cpp │ │ ├── example_accumulator_set.cpp │ │ ├── example_custom_accum.cpp │ │ ├── example_histogram.cpp │ │ ├── example_new_input_op.cpp │ │ ├── example_vector_operators.cpp │ │ └── test_alps_multi_array.cpp ├── parapack │ ├── CMakeLists.txt │ ├── exchange │ │ ├── CMakeLists.txt │ │ ├── exchange.ip │ │ ├── ising.C │ │ ├── loop.C │ │ ├── main.C │ │ ├── params-ising │ │ └── params-loop │ ├── heisenberg │ │ ├── CMakeLists.txt │ │ ├── heisenberg.C │ │ ├── heisenberg.h │ │ ├── heisenberg.ip │ │ └── heisenberg.op │ ├── ising │ │ ├── CMakeLists.txt │ │ ├── ising.C │ │ ├── ising.h │ │ ├── ising.ip │ │ └── ising.op │ ├── loop │ │ ├── CMakeLists.txt │ │ ├── loop.C │ │ ├── loop.h │ │ ├── loop.ip │ │ ├── loop.op │ │ ├── main.C │ │ ├── params │ │ ├── params_disorder │ │ └── union_find.h │ ├── multiple │ │ ├── CMakeLists.txt │ │ ├── ising.C │ │ ├── ising.h │ │ ├── ising.ip │ │ ├── ising.op-2 │ │ ├── ising.op-4 │ │ ├── main.C │ │ └── params │ ├── single │ │ ├── CMakeLists.txt │ │ ├── ising.C │ │ ├── ising.h │ │ ├── ising.ip │ │ ├── ising.op │ │ ├── main.C │ │ └── params │ └── wanglandau │ │ ├── CMakeLists.txt │ │ ├── main.C │ │ ├── params_learn │ │ ├── params_measure │ │ ├── params_reweight │ │ ├── wanglandau.C │ │ ├── wanglandau.h │ │ ├── wanglandau.ip │ │ └── wanglandau.op ├── sampling │ ├── CMakeLists.txt │ ├── fleas.h │ ├── fleas_correlated.C │ ├── fleas_direct.C │ ├── fleas_independent.C │ ├── fleas_simpleminded.C │ └── fleas_uncorrelated.C └── scheduler │ ├── CMakeLists.txt │ ├── evaluate.C │ ├── evaluate2.C │ ├── ising.C │ ├── ising.h │ ├── ising2.C │ ├── ising2.h │ ├── main.C │ ├── main2.C │ ├── main3.C │ ├── parm │ ├── parm2 │ └── parm3 ├── legacy └── alps │ ├── copyright.h │ ├── math.hpp │ ├── osiris │ └── os.h │ └── vectorio.h ├── lib ├── mpi.py ├── pyalps │ ├── CMakeLists.txt │ ├── __init__.py │ ├── alea.py │ ├── alea_detail.py │ ├── apptest.py │ ├── cxx.py │ ├── dataset.py │ ├── dict_intersect.py │ ├── dwa.py │ ├── fit_wrapper.py │ ├── floatwitherror.py │ ├── hdf5.py │ ├── hlist.py │ ├── lattice.py │ ├── load.py │ ├── math.py │ ├── maxent.py │ ├── mpi.py │ ├── mpl_setup_macosx.py │ ├── mpl_setup_qt.py │ ├── mpl_setup_tk.py │ ├── natural_sort.py │ ├── ngs.py │ ├── plot.py │ ├── plot_core.py │ ├── pyalps_config.py │ ├── pyalps_config.py.in │ ├── pytools.py │ └── tools.py └── xml │ ├── ALPS.xsl │ ├── QMCXML2text.xsl │ ├── archive2plot.xsl │ ├── changestylesheet.xsl │ ├── helpers.xsl │ ├── lattices.xml.in │ ├── models.xml.in │ ├── plot2gp.xsl │ ├── plot2mpl.xsl │ ├── plot2text.xsl │ ├── plot2xmgr.xsl │ └── plot2xsl.xsl ├── pyproject.toml ├── requirements.txt ├── script ├── CMakeLists.txt ├── cmake28.sh ├── cmake3.sh ├── compile.py ├── download-docbook.sh ├── end_check.cpp ├── gcc.sh ├── gcc44.sh ├── hdf5-nofortran.sh ├── hdf5.sh ├── inspect.cpp ├── license_check.cpp ├── linecount.sh ├── lpsolve.sh ├── openmpi-nofortran.sh ├── openmpi.sh ├── openmpi1.6.sh ├── path_name_check.cpp ├── prepare_deplibs.bat ├── prepare_deplibs64.bat ├── prepare_deplibs_mac.sh ├── tab_check.cpp ├── test_libs_mac.sh └── upload_alps.sh ├── src ├── alps │ ├── CMakeLists.txt │ ├── alea.h │ ├── alea │ │ ├── abstractbinning.h │ │ ├── abstractsimpleobservable.h │ │ ├── abstractsimpleobservable.ipp │ │ ├── convergence.hpp │ │ ├── detailedbinning.h │ │ ├── histogram.h │ │ ├── histogramdata.h │ │ ├── histogrameval.h │ │ ├── mcanalyze.hpp │ │ ├── mcdata.hpp │ │ ├── nan.C │ │ ├── nan.h │ │ ├── nobinning.h │ │ ├── observable.C │ │ ├── observable.h │ │ ├── observable_fwd.hpp │ │ ├── observablefactory.C │ │ ├── observablefactory.h │ │ ├── observableset.C │ │ ├── observableset.h │ │ ├── observableset_p.h │ │ ├── output_helper.h │ │ ├── recordableobservable.h │ │ ├── signedobservable.h │ │ ├── simplebinning.h │ │ ├── simpleobsdata.h │ │ ├── simpleobservable.h │ │ ├── simpleobservable.ipp │ │ ├── simpleobseval.h │ │ ├── simpleobseval.ipp │ │ ├── type_tag.hpp │ │ └── value_with_error.hpp │ ├── boost │ │ └── accumulators │ │ │ └── numeric │ │ │ ├── functional.hpp │ │ │ └── functional │ │ │ ├── valarray.hpp │ │ │ └── vector.hpp │ ├── cctype.h │ ├── check_schedule.hpp │ ├── config.h.in │ ├── expression.h │ ├── expression │ │ ├── block.h │ │ ├── evaluatable.h │ │ ├── evaluate.h │ │ ├── evaluate_helper.h │ │ ├── evaluator.C │ │ ├── evaluator.h │ │ ├── expression.h │ │ ├── expression_fwd.h │ │ ├── factor.h │ │ ├── function.h │ │ ├── number.h │ │ ├── parameterevaluator.h │ │ ├── symbol.h │ │ ├── term.h │ │ └── traits.h │ ├── factory.h │ ├── fixed_capacity │ │ ├── checking.h │ │ ├── deque_detail.h │ │ └── uninitialized_array.h │ ├── fixed_capacity_deque.h │ ├── fixed_capacity_fwd.h │ ├── fixed_capacity_traits.h │ ├── fixed_capacity_vector.h │ ├── fortran │ │ ├── alps_fortran.h │ │ ├── fortran_wrapper.h │ │ ├── fwrapper_impl.C │ │ └── fwrapper_impl.h │ ├── functional.h │ ├── graph │ │ ├── canonical_graph.hpp │ │ ├── canonical_properties.hpp │ │ ├── canonical_properties_traits.hpp │ │ ├── detail │ │ │ ├── assert_helpers.hpp │ │ │ ├── canonical_properties_impl.hpp │ │ │ ├── helper_functions.hpp │ │ │ ├── lattice_constant_impl.hpp │ │ │ └── shared_queue.hpp │ │ ├── is_embeddable.hpp │ │ ├── lattice_constant.hpp │ │ ├── lattice_constant_debug.hpp │ │ ├── subgraph_generator.hpp │ │ ├── subgraphs.hpp │ │ ├── utils.hpp │ │ └── vertices_of_cell.hpp │ ├── hdf5.hpp │ ├── hdf5 │ │ ├── archive.cpp │ │ ├── archive.hpp │ │ ├── array.hpp │ │ ├── complex.hpp │ │ ├── errors.hpp │ │ ├── map.hpp │ │ ├── matrix.hpp │ │ ├── multi_array.hpp │ │ ├── numeric_vector.hpp │ │ ├── pair.hpp │ │ ├── pointer.hpp │ │ ├── python.cpp │ │ ├── python.hpp │ │ ├── shared_array.hpp │ │ ├── stdarray.hpp │ │ ├── tuple.hpp │ │ ├── ublas │ │ │ ├── matrix.hpp │ │ │ └── vector.hpp │ │ ├── valarray.hpp │ │ └── vector.hpp │ ├── lambda.hpp │ ├── lattice.h │ ├── lattice │ │ ├── bond_compare.h │ │ ├── boundary.h │ │ ├── cell_traits.h │ │ ├── coordinate_traits.h │ │ ├── coordinategraph.h │ │ ├── coordinatelattice.h │ │ ├── dimensional_traits.h │ │ ├── disorder.C │ │ ├── disorder.h │ │ ├── graph.h │ │ ├── graph_helper.h │ │ ├── graph_traits.h │ │ ├── graphproperties.h │ │ ├── hypercubic.h │ │ ├── lattice.h │ │ ├── latticedescriptor.C │ │ ├── latticedescriptor.h │ │ ├── latticegraph.h │ │ ├── latticegraphdescriptor.C │ │ ├── latticegraphdescriptor.h │ │ ├── latticelibrary.C │ │ ├── latticelibrary.h │ │ ├── parity.h │ │ ├── point_traits.h │ │ ├── propertymap.h │ │ ├── simplecell.h │ │ ├── simplelattice.h │ │ ├── unitcell.C │ │ └── unitcell.h │ ├── mcbase.cpp │ ├── mcbase.hpp │ ├── mcmpiadapter.hpp │ ├── model.h │ ├── model │ │ ├── TODO.txt │ │ ├── basisdescriptor.h │ │ ├── basisstates.h │ │ ├── blochbasisstates.h │ │ ├── bondoperator.h │ │ ├── bondterm.C │ │ ├── bondterm.h │ │ ├── default_term.h │ │ ├── globaloperator.C │ │ ├── globaloperator.h │ │ ├── half_integer.h │ │ ├── hamiltonian.h │ │ ├── hamiltonian_matrix.hpp │ │ ├── ideas.xml │ │ ├── integer_state.h │ │ ├── model_helper.h │ │ ├── modellibrary.C │ │ ├── modellibrary.h │ │ ├── operator.h │ │ ├── operatordescriptor.h │ │ ├── operatorsubstitution.h │ │ ├── quantumnumber.h │ │ ├── sign.h │ │ ├── sitebasisdescriptor.h │ │ ├── sitebasisstates.h │ │ ├── siteoperator.h │ │ ├── sitestate.h │ │ ├── siteterm.C │ │ ├── siteterm.h │ │ └── substitute.h │ ├── multi_array.hpp │ ├── multi_array │ │ ├── functions.hpp │ │ ├── io.hpp │ │ ├── multi_array.hpp │ │ ├── operators.hpp │ │ └── serialization.hpp │ ├── ngs.hpp │ ├── ngs │ │ ├── accumulator.hpp │ │ ├── accumulator │ │ │ ├── accumulator.cpp │ │ │ ├── accumulator.hpp │ │ │ ├── deprecated │ │ │ │ ├── accumulator.hpp │ │ │ │ ├── accumulator │ │ │ │ │ ├── accumulator_impl.hpp │ │ │ │ │ └── arguments.hpp │ │ │ │ ├── accumulator_set.hpp │ │ │ │ ├── alea.hpp │ │ │ │ ├── alea │ │ │ │ │ ├── accumulator_set.cpp │ │ │ │ │ └── result_set.cpp │ │ │ │ ├── feature │ │ │ │ │ ├── autocorrelation.hpp │ │ │ │ │ ├── converged.hpp │ │ │ │ │ ├── error.hpp │ │ │ │ │ ├── feature_traits.hpp │ │ │ │ │ ├── features.hpp │ │ │ │ │ ├── fixed_size_binning.hpp │ │ │ │ │ ├── generate_property.hpp │ │ │ │ │ ├── histogram.hpp │ │ │ │ │ ├── log_binning.hpp │ │ │ │ │ ├── max_num_binning.hpp │ │ │ │ │ ├── mean.hpp │ │ │ │ │ ├── tags.hpp │ │ │ │ │ ├── tau.hpp │ │ │ │ │ ├── value_type.hpp │ │ │ │ │ └── weight.hpp │ │ │ │ ├── features.hpp │ │ │ │ ├── result.hpp │ │ │ │ ├── result_set.hpp │ │ │ │ └── wrapper │ │ │ │ │ ├── accumulator_wrapper.hpp │ │ │ │ │ ├── base_wrapper.hpp │ │ │ │ │ ├── derived_wrapper.hpp │ │ │ │ │ ├── result_type_wrapper.hpp │ │ │ │ │ └── result_wrapper.hpp │ │ │ ├── feature.hpp │ │ │ ├── feature │ │ │ │ ├── binning_analysis.hpp │ │ │ │ ├── count.hpp │ │ │ │ ├── error.hpp │ │ │ │ ├── max_num_binning.hpp │ │ │ │ ├── mean.hpp │ │ │ │ ├── weight.hpp │ │ │ │ └── weight_holder.hpp │ │ │ ├── parameter.hpp │ │ │ └── wrappers.hpp │ │ ├── api.hpp │ │ ├── boost_mpi.hpp │ │ ├── boost_python.hpp │ │ ├── cast.hpp │ │ ├── config.hpp │ │ ├── detail │ │ │ ├── export_sim_to_python.hpp │ │ │ ├── extract_from_pyobject.hpp │ │ │ ├── get_numpy_type.hpp │ │ │ ├── paramiterator.hpp │ │ │ ├── paramproxy.hpp │ │ │ ├── params_impl_base.hpp │ │ │ ├── paramvalue.hpp │ │ │ ├── paramvalue_reader.hpp │ │ │ ├── remove_cvr.hpp │ │ │ ├── tcpsession.hpp │ │ │ └── type_wrapper.hpp │ │ ├── hash.hpp │ │ ├── lib │ │ │ ├── api.cpp │ │ │ ├── clone.cpp │ │ │ ├── clone_info.cpp │ │ │ ├── get_numpy_type.cpp │ │ │ ├── job.cpp │ │ │ ├── make_deprecated_parameters.cpp │ │ │ ├── make_parameters_from_xml.cpp │ │ │ ├── mcobservable.cpp │ │ │ ├── mcobservables.cpp │ │ │ ├── mcoptions.cpp │ │ │ ├── mcresult.cpp │ │ │ ├── mcresult_impl_base.ipp │ │ │ ├── mcresult_impl_derived.ipp │ │ │ ├── mcresults.cpp │ │ │ ├── observablewrappers.cpp │ │ │ ├── paramproxy.cpp │ │ │ ├── params.cpp │ │ │ ├── paramvalue.cpp │ │ │ ├── parapack.cpp │ │ │ ├── short_print.cpp │ │ │ ├── signal.cpp │ │ │ ├── sleep.cpp │ │ │ ├── stacktrace.cpp │ │ │ ├── ulfm.cpp │ │ │ └── worker_factory.cpp │ │ ├── make_deprecated_parameters.hpp │ │ ├── make_parameters_from_xml.hpp │ │ ├── mcobservable.hpp │ │ ├── mcobservables.hpp │ │ ├── mcoptions.hpp │ │ ├── mcresult.hpp │ │ ├── mcresults.hpp │ │ ├── mpi.hpp │ │ ├── mutex.hpp │ │ ├── numeric.hpp │ │ ├── numeric │ │ │ ├── array.hpp │ │ │ ├── detail.hpp │ │ │ ├── inf.hpp │ │ │ ├── multi_array.hpp │ │ │ └── vector.hpp │ │ ├── observablewrappers.hpp │ │ ├── params.hpp │ │ ├── parapack │ │ │ ├── clone.h │ │ │ ├── clone_info.h │ │ │ ├── clone_info_p.h │ │ │ ├── clone_proxy.h │ │ │ ├── job.h │ │ │ ├── job_p.h │ │ │ ├── params_p.h │ │ │ ├── parapack.h │ │ │ ├── simulation_p.h │ │ │ └── worker_factory.h │ │ ├── python │ │ │ ├── accumulator.cpp │ │ │ ├── api.cpp │ │ │ ├── hdf5.cpp │ │ │ ├── mcbase.cpp │ │ │ ├── observable.cpp │ │ │ ├── observables.cpp │ │ │ ├── params.cpp │ │ │ ├── random01.cpp │ │ │ ├── result.cpp │ │ │ └── results.cpp │ │ ├── random01.hpp │ │ ├── result.hpp │ │ ├── scheduler │ │ │ ├── proto │ │ │ │ ├── controlthreadsim.hpp │ │ │ │ ├── mcbase.hpp │ │ │ │ ├── mpisim.hpp │ │ │ │ ├── mpisim_ulfm.hpp │ │ │ │ └── tcpserver.hpp │ │ │ └── tcpserver.hpp │ │ ├── short_print.hpp │ │ ├── signal.hpp │ │ ├── sleep.hpp │ │ ├── stacktrace.hpp │ │ ├── stringify.hpp │ │ ├── thread_exceptions.hpp │ │ └── ulfm.hpp │ ├── numeric │ │ ├── abs2.hpp │ │ ├── accumulate_if.hpp │ │ ├── binomial.hpp │ │ ├── checked_divide.hpp │ │ ├── conj.hpp │ │ ├── deprecated │ │ │ └── vector.hpp │ │ ├── detail │ │ │ └── deprecated │ │ │ │ ├── blasheader.hpp │ │ │ │ ├── blasmacros.h │ │ │ │ ├── general_matrix.hpp │ │ │ │ ├── matrix.hpp │ │ │ │ └── vector.hpp │ │ ├── diagonal_matrix.hpp │ │ ├── double2int.hpp │ │ ├── fourier.hpp │ │ ├── functional.hpp │ │ ├── imag.hpp │ │ ├── is_equal.hpp │ │ ├── is_negative.hpp │ │ ├── is_nonzero.hpp │ │ ├── is_positive.hpp │ │ ├── is_zero.hpp │ │ ├── isinf.hpp │ │ ├── isnan.hpp │ │ ├── matrix.hpp │ │ ├── matrix │ │ │ ├── algorithms.hpp │ │ │ ├── column_view.hpp │ │ │ ├── conj.hpp │ │ │ ├── detail │ │ │ │ ├── auto_deduce_multiply_return_type.hpp │ │ │ │ ├── auto_deduce_plus_return_type.hpp │ │ │ │ ├── blasmacros.hpp │ │ │ │ ├── column_view_adaptor.hpp │ │ │ │ ├── debug_output.hpp │ │ │ │ ├── matrix_adaptor.hpp │ │ │ │ ├── print_matrix.hpp │ │ │ │ ├── print_vector.hpp │ │ │ │ ├── transpose_view_adaptor.hpp │ │ │ │ └── vector_adaptor.hpp │ │ │ ├── entity.hpp │ │ │ ├── exchange_value_type.hpp │ │ │ ├── gemm.hpp │ │ │ ├── gemv.hpp │ │ │ ├── is_blas_dispatchable.hpp │ │ │ ├── matrix.hpp │ │ │ ├── matrix.ipp │ │ │ ├── matrix_concept_archetype.hpp │ │ │ ├── matrix_concept_check.hpp │ │ │ ├── matrix_element_iterator.hpp │ │ │ ├── matrix_interface.hpp │ │ │ ├── matrix_traits.hpp │ │ │ ├── operators │ │ │ │ ├── multiply.hpp │ │ │ │ ├── multiply_matrix.hpp │ │ │ │ ├── multiply_scalar.hpp │ │ │ │ ├── op_assign.hpp │ │ │ │ ├── op_assign_matrix.hpp │ │ │ │ ├── op_assign_vector.hpp │ │ │ │ └── plus_minus.hpp │ │ │ ├── resizable_matrix_concept_check.hpp │ │ │ ├── resizable_matrix_interface.hpp │ │ │ ├── scalar_product.hpp │ │ │ ├── strided_iterator.hpp │ │ │ ├── transpose.hpp │ │ │ ├── transpose_view.hpp │ │ │ ├── ublas_sparse_functions.hpp │ │ │ ├── vector.hpp │ │ │ └── vector_interface.hpp │ │ ├── matrix_as_vector.hpp │ │ ├── outer_product.hpp │ │ ├── polynomial.hpp │ │ ├── real.hpp │ │ ├── regression.hpp │ │ ├── resizeable_vector.h │ │ ├── round.hpp │ │ ├── scalar_product.hpp │ │ ├── sequence_comparisons.hpp │ │ ├── set_negative_0.hpp │ │ ├── special_functions.hpp │ │ ├── update_minmax.hpp │ │ ├── valarray_functions.hpp │ │ ├── vector_functions.hpp │ │ └── vector_valarray_conversion.hpp │ ├── osiris.h │ ├── osiris │ │ ├── archivedump.h │ │ ├── boost │ │ │ ├── array.h │ │ │ └── ublas.h │ │ ├── buffer.C │ │ ├── buffer.h │ │ ├── comm.C │ │ ├── comm.h │ │ ├── dump.C │ │ ├── dump.h │ │ ├── dumparchive.C │ │ ├── dumparchive.h │ │ ├── mpdump.C │ │ ├── mpdump.h │ │ ├── process.C │ │ ├── process.h │ │ ├── rpc_types.h │ │ ├── std │ │ │ ├── deque.h │ │ │ ├── impl.h │ │ │ ├── list.h │ │ │ ├── map.h │ │ │ ├── pair.h │ │ │ ├── set.h │ │ │ ├── stack.h │ │ │ ├── string.h │ │ │ ├── valarray.h │ │ │ └── vector.h │ │ ├── xdr.c │ │ ├── xdr_array.c │ │ ├── xdr_float.c │ │ ├── xdr_stdio.c │ │ ├── xdrcore.C │ │ ├── xdrcore.h │ │ ├── xdrdump.C │ │ └── xdrdump.h │ ├── parameter.h │ ├── parameter │ │ ├── parameter.C │ │ ├── parameter.h │ │ ├── parameter_p.h │ │ ├── parameterlist.C │ │ ├── parameterlist.h │ │ ├── parameterlist_p.h │ │ ├── parameters.C │ │ ├── parameters.h │ │ └── parameters_p.h │ ├── parapack │ │ ├── clone.C │ │ ├── clone.h │ │ ├── clone_info.C │ │ ├── clone_info.h │ │ ├── clone_info_p.h │ │ ├── clone_proxy.h │ │ ├── clone_timer.h │ │ ├── exchange.h │ │ ├── exchange_multi.h │ │ ├── exp_number.h │ │ ├── filelock.C │ │ ├── filelock.h │ │ ├── footprint.h │ │ ├── integer_range.h │ │ ├── job.C │ │ ├── job.h │ │ ├── job_p.h │ │ ├── logger.C │ │ ├── logger.h │ │ ├── mc_worker.C │ │ ├── mc_worker.h │ │ ├── measurement.C │ │ ├── measurement.h │ │ ├── montecarlo.h │ │ ├── option.C │ │ ├── option.h │ │ ├── parapack.C │ │ ├── parapack.h │ │ ├── permutation.h │ │ ├── process.h │ │ ├── process_impl.C │ │ ├── queue.C │ │ ├── queue.h │ │ ├── rng_helper.C │ │ ├── rng_helper.h │ │ ├── simulation_p.h │ │ ├── staging.C │ │ ├── staging.h │ │ ├── temperature_scan.h │ │ ├── types.C │ │ ├── types.h │ │ ├── util.C │ │ ├── util.h │ │ ├── version.C │ │ ├── version.h │ │ ├── wanglandau.h │ │ ├── worker.h │ │ ├── worker_factory.C │ │ └── worker_factory.h │ ├── parseargs.cpp │ ├── parseargs.hpp │ ├── parser │ │ ├── parser.C │ │ ├── parser.h │ │ ├── xmlattributes.C │ │ ├── xmlattributes.h │ │ ├── xmlhandler.C │ │ ├── xmlhandler.h │ │ ├── xmlparser.C │ │ ├── xmlparser.h │ │ ├── xmlstream.C │ │ ├── xmlstream.h │ │ ├── xslt_path.C │ │ └── xslt_path.h │ ├── plot.h │ ├── progress_callback.hpp │ ├── python │ │ ├── make_copy.hpp │ │ ├── numpy_array.cpp │ │ ├── numpy_array.hpp │ │ ├── numpy_import.hpp │ │ ├── pyalea.cpp │ │ ├── pymcdata.cpp │ │ ├── pytools.cpp │ │ └── save_observable_to_hdf5.hpp │ ├── random.h │ ├── random │ │ ├── buffered_generator.hpp │ │ ├── buffered_rng.h │ │ ├── buffered_uniform_01.hpp │ │ ├── mersenne_twister.hpp │ │ ├── multivariate_normal_distribution.hpp │ │ ├── parallel.hpp │ │ ├── parallel │ │ │ ├── detail │ │ │ │ ├── get_prime.hpp │ │ │ │ ├── primelist_64.hpp │ │ │ │ └── seed_macros.hpp │ │ │ ├── get_prime.cpp │ │ │ ├── keyword.hpp │ │ │ ├── lcg64.hpp │ │ │ ├── mersenne_twister.hpp │ │ │ ├── mpi.hpp │ │ │ ├── primelist_64.cpp │ │ │ ├── primelist_64.hpp │ │ │ ├── seed.hpp │ │ │ └── well.hpp │ │ ├── pseudo_des.h │ │ ├── random_choice.hpp │ │ ├── rngfactory.C │ │ ├── rngfactory.h │ │ ├── seed.h │ │ ├── sprng.hpp │ │ ├── sprng │ │ │ ├── cmrg.hpp │ │ │ ├── detail │ │ │ │ ├── buffer.hpp │ │ │ │ ├── implementation.hpp │ │ │ │ └── interface.hpp │ │ │ ├── keyword.hpp │ │ │ ├── lcg.hpp │ │ │ ├── lcg64.hpp │ │ │ ├── lfg.hpp │ │ │ ├── mlfg.hpp │ │ │ └── pmlcg.hpp │ │ └── uniform_on_sphere_n.h │ ├── scheduler.h │ ├── scheduler │ │ ├── abstract_task.C │ │ ├── convert.h │ │ ├── convertxdr.C │ │ ├── diag.hpp │ │ ├── factory.C │ │ ├── factory.h │ │ ├── info.C │ │ ├── info.h │ │ ├── master_scheduler.C │ │ ├── measurement_operators.C │ │ ├── measurement_operators.h │ │ ├── montecarlo.C │ │ ├── montecarlo.h │ │ ├── mpp_scheduler.C │ │ ├── options.C │ │ ├── options.h │ │ ├── remote_task.C │ │ ├── remote_worker.C │ │ ├── scheduler.C │ │ ├── scheduler.h │ │ ├── serial_scheduler.C │ │ ├── signal.C │ │ ├── signal.hpp │ │ ├── single_scheduler.C │ │ ├── slave_task.C │ │ ├── task.C │ │ ├── task.h │ │ ├── types.h │ │ ├── worker.C │ │ ├── worker.h │ │ └── workertask.C │ ├── stop_callback.cpp │ ├── stop_callback.hpp │ ├── stringvalue.h │ ├── type_traits │ │ ├── average_type.hpp │ │ ├── change_value_type.hpp │ │ ├── covariance_type.hpp │ │ ├── element_type.hpp │ │ ├── has_value_type.hpp │ │ ├── is_complex.hpp │ │ ├── is_scalar.hpp │ │ ├── is_sequence.hpp │ │ ├── is_symbolic.hpp │ │ ├── iterator_type.hpp │ │ ├── norm_type.hpp │ │ ├── param_type.hpp │ │ ├── real_type.hpp │ │ ├── slice.hpp │ │ └── type_tag.hpp │ ├── utility │ │ ├── assign.hpp │ │ ├── bitops.hpp │ │ ├── copyright.cpp │ │ ├── copyright.hpp │ │ ├── data.hpp │ │ ├── encode.cpp │ │ ├── encode.hpp │ │ ├── factory.hpp │ │ ├── generator.hpp │ │ ├── make_copy.hpp │ │ ├── numeric_cast.hpp │ │ ├── os.cpp │ │ ├── os.hpp │ │ ├── resize.hpp │ │ ├── set_zero.hpp │ │ ├── size.hpp │ │ ├── temporary_filename.cpp │ │ ├── temporary_filename.hpp │ │ ├── vectorio.hpp │ │ ├── vmusage.cpp │ │ └── vmusage.hpp │ ├── version.h.in │ └── xml.h ├── boost │ ├── CMakeLists.txt │ ├── classic_spirit.hpp │ ├── fs_utf8_codecvt_facet.cpp.in │ ├── function_objects.hpp │ ├── mpi │ │ └── module.cpp │ ├── numeric │ │ └── bindings │ │ │ ├── addressing_index.hpp │ │ │ ├── at.hpp │ │ │ ├── bandwidth.hpp │ │ │ ├── begin.hpp │ │ │ ├── blas.hpp │ │ │ ├── blas │ │ │ ├── detail │ │ │ │ ├── blas.h │ │ │ │ ├── blas_names.h │ │ │ │ ├── blas_option.hpp │ │ │ │ ├── cblas.h │ │ │ │ ├── cblas_option.hpp │ │ │ │ ├── cublas.h │ │ │ │ └── default_order.hpp │ │ │ ├── level1.hpp │ │ │ ├── level1 │ │ │ │ ├── asum.hpp │ │ │ │ ├── axpy.hpp │ │ │ │ ├── copy.hpp │ │ │ │ ├── dot.hpp │ │ │ │ ├── dotc.hpp │ │ │ │ ├── dotu.hpp │ │ │ │ ├── iamax.hpp │ │ │ │ ├── nrm2.hpp │ │ │ │ ├── prec_dot.hpp │ │ │ │ ├── rot.hpp │ │ │ │ ├── rotg.hpp │ │ │ │ ├── rotm.hpp │ │ │ │ ├── rotmg.hpp │ │ │ │ ├── scal.hpp │ │ │ │ ├── set.hpp │ │ │ │ └── swap.hpp │ │ │ ├── level2.hpp │ │ │ ├── level2 │ │ │ │ ├── gbmv.hpp │ │ │ │ ├── gemv.hpp │ │ │ │ ├── ger.hpp │ │ │ │ ├── gerc.hpp │ │ │ │ ├── geru.hpp │ │ │ │ ├── hbmv.hpp │ │ │ │ ├── hemv.hpp │ │ │ │ ├── her.hpp │ │ │ │ ├── her2.hpp │ │ │ │ ├── hpmv.hpp │ │ │ │ ├── hpr.hpp │ │ │ │ ├── hpr2.hpp │ │ │ │ ├── sbmv.hpp │ │ │ │ ├── spmv.hpp │ │ │ │ ├── spr.hpp │ │ │ │ ├── spr2.hpp │ │ │ │ ├── symv.hpp │ │ │ │ ├── syr.hpp │ │ │ │ ├── syr2.hpp │ │ │ │ ├── tbmv.hpp │ │ │ │ ├── tbsv.hpp │ │ │ │ ├── tpmv.hpp │ │ │ │ ├── tpsv.hpp │ │ │ │ ├── trmv.hpp │ │ │ │ └── trsv.hpp │ │ │ ├── level3.hpp │ │ │ └── level3 │ │ │ │ ├── gemm.hpp │ │ │ │ ├── hemm.hpp │ │ │ │ ├── her2k.hpp │ │ │ │ ├── herk.hpp │ │ │ │ ├── symm.hpp │ │ │ │ ├── syr2k.hpp │ │ │ │ ├── syrk.hpp │ │ │ │ ├── trmm.hpp │ │ │ │ └── trsm.hpp │ │ │ ├── boost │ │ │ ├── array.hpp │ │ │ └── multi_array.hpp │ │ │ ├── column.hpp │ │ │ ├── conj.hpp │ │ │ ├── data_order.hpp │ │ │ ├── data_side.hpp │ │ │ ├── detail │ │ │ ├── adaptable_type.hpp │ │ │ ├── adaptor.hpp │ │ │ ├── array.hpp │ │ │ ├── basic_unwrapper.hpp │ │ │ ├── basic_wrapper.hpp │ │ │ ├── complex_utils.hpp │ │ │ ├── config │ │ │ │ └── fortran.hpp │ │ │ ├── convert_to.hpp │ │ │ ├── copy_const.hpp │ │ │ ├── generate_functions.hpp │ │ │ ├── get.hpp │ │ │ ├── if_left.hpp │ │ │ ├── if_row_major.hpp │ │ │ ├── linear_iterator.hpp │ │ │ ├── offset.hpp │ │ │ ├── pod.hpp │ │ │ └── property_map.hpp │ │ │ ├── diag_tag.hpp │ │ │ ├── eigen │ │ │ ├── matrix.hpp │ │ │ └── sparsematrix.hpp │ │ │ ├── end.hpp │ │ │ ├── glas │ │ │ ├── compressed.hpp │ │ │ ├── dense_matrix.hpp │ │ │ ├── dense_vector.hpp │ │ │ ├── dense_vector_collection.hpp │ │ │ └── detail │ │ │ │ └── convert_to.hpp │ │ │ ├── has_band_array.hpp │ │ │ ├── has_linear_array.hpp │ │ │ ├── has_rank.hpp │ │ │ ├── has_static_size.hpp │ │ │ ├── has_static_stride.hpp │ │ │ ├── has_triangular_array.hpp │ │ │ ├── herm.hpp │ │ │ ├── index_base.hpp │ │ │ ├── io.hpp │ │ │ ├── is_column_major.hpp │ │ │ ├── is_complex.hpp │ │ │ ├── is_mutable.hpp │ │ │ ├── is_numeric.hpp │ │ │ ├── is_real.hpp │ │ │ ├── is_row_major.hpp │ │ │ ├── is_symmetric.hpp │ │ │ ├── lapack.hpp │ │ │ ├── lapack │ │ │ ├── auxiliary.hpp │ │ │ ├── auxiliary │ │ │ │ ├── ilaenv.hpp │ │ │ │ ├── labrd.hpp │ │ │ │ ├── lacgv.hpp │ │ │ │ ├── lacon.hpp │ │ │ │ ├── laebz.hpp │ │ │ │ ├── lalsd.hpp │ │ │ │ ├── langb.hpp │ │ │ │ ├── lange.hpp │ │ │ │ ├── lanhb.hpp │ │ │ │ ├── lanhe.hpp │ │ │ │ ├── lanhp.hpp │ │ │ │ ├── lanhs.hpp │ │ │ │ ├── lansb.hpp │ │ │ │ ├── lansp.hpp │ │ │ │ ├── lansy.hpp │ │ │ │ ├── lantb.hpp │ │ │ │ ├── lantp.hpp │ │ │ │ ├── lantr.hpp │ │ │ │ ├── larf.hpp │ │ │ │ ├── larfb.hpp │ │ │ │ ├── larfg.hpp │ │ │ │ ├── larft.hpp │ │ │ │ ├── larfx.hpp │ │ │ │ ├── largv.hpp │ │ │ │ ├── larnv.hpp │ │ │ │ ├── larrb.hpp │ │ │ │ ├── larre.hpp │ │ │ │ ├── larz.hpp │ │ │ │ ├── latrd.hpp │ │ │ │ ├── latrs.hpp │ │ │ │ └── latrz.hpp │ │ │ ├── computational.hpp │ │ │ ├── computational │ │ │ │ ├── bdsdc.hpp │ │ │ │ ├── bdsqr.hpp │ │ │ │ ├── gbbrd.hpp │ │ │ │ ├── gbcon.hpp │ │ │ │ ├── gbequ.hpp │ │ │ │ ├── gbrfs.hpp │ │ │ │ ├── gbtrf.hpp │ │ │ │ ├── gbtrs.hpp │ │ │ │ ├── gebak.hpp │ │ │ │ ├── gebal.hpp │ │ │ │ ├── gebrd.hpp │ │ │ │ ├── gecon.hpp │ │ │ │ ├── geequ.hpp │ │ │ │ ├── gehrd.hpp │ │ │ │ ├── gelqf.hpp │ │ │ │ ├── geqlf.hpp │ │ │ │ ├── geqp3.hpp │ │ │ │ ├── geqrf.hpp │ │ │ │ ├── gerfs.hpp │ │ │ │ ├── gerqf.hpp │ │ │ │ ├── getrf.hpp │ │ │ │ ├── getri.hpp │ │ │ │ ├── getrs.hpp │ │ │ │ ├── ggbak.hpp │ │ │ │ ├── ggbal.hpp │ │ │ │ ├── gghrd.hpp │ │ │ │ ├── ggqrf.hpp │ │ │ │ ├── ggrqf.hpp │ │ │ │ ├── ggsvp.hpp │ │ │ │ ├── gtrfs.hpp │ │ │ │ ├── gttrs.hpp │ │ │ │ ├── hbgst.hpp │ │ │ │ ├── hbtrd.hpp │ │ │ │ ├── hecon.hpp │ │ │ │ ├── hegst.hpp │ │ │ │ ├── herfs.hpp │ │ │ │ ├── hetrd.hpp │ │ │ │ ├── hetrf.hpp │ │ │ │ ├── hetri.hpp │ │ │ │ ├── hetrs.hpp │ │ │ │ ├── hgeqz.hpp │ │ │ │ ├── hpcon.hpp │ │ │ │ ├── hprfs.hpp │ │ │ │ ├── hptrd.hpp │ │ │ │ ├── hptrf.hpp │ │ │ │ ├── hptri.hpp │ │ │ │ ├── hptrs.hpp │ │ │ │ ├── hsein.hpp │ │ │ │ ├── hseqr.hpp │ │ │ │ ├── opgtr.hpp │ │ │ │ ├── opmtr.hpp │ │ │ │ ├── orgbr.hpp │ │ │ │ ├── orghr.hpp │ │ │ │ ├── orglq.hpp │ │ │ │ ├── orgql.hpp │ │ │ │ ├── orgqr.hpp │ │ │ │ ├── orgrq.hpp │ │ │ │ ├── orgtr.hpp │ │ │ │ ├── ormbr.hpp │ │ │ │ ├── ormhr.hpp │ │ │ │ ├── ormlq.hpp │ │ │ │ ├── ormql.hpp │ │ │ │ ├── ormqr.hpp │ │ │ │ ├── ormrq.hpp │ │ │ │ ├── ormrz.hpp │ │ │ │ ├── ormtr.hpp │ │ │ │ ├── pbcon.hpp │ │ │ │ ├── pbequ.hpp │ │ │ │ ├── pbrfs.hpp │ │ │ │ ├── pbstf.hpp │ │ │ │ ├── pbtrf.hpp │ │ │ │ ├── pbtrs.hpp │ │ │ │ ├── pftrf.hpp │ │ │ │ ├── pftri.hpp │ │ │ │ ├── pftrs.hpp │ │ │ │ ├── pocon.hpp │ │ │ │ ├── poequ.hpp │ │ │ │ ├── porfs.hpp │ │ │ │ ├── potrf.hpp │ │ │ │ ├── potri.hpp │ │ │ │ ├── potrs.hpp │ │ │ │ ├── ppcon.hpp │ │ │ │ ├── ppequ.hpp │ │ │ │ ├── pprfs.hpp │ │ │ │ ├── pptrf.hpp │ │ │ │ ├── pptri.hpp │ │ │ │ ├── pptrs.hpp │ │ │ │ ├── pstrf.hpp │ │ │ │ ├── ptcon.hpp │ │ │ │ ├── pteqr.hpp │ │ │ │ ├── ptrfs.hpp │ │ │ │ ├── pttrf.hpp │ │ │ │ ├── pttrs.hpp │ │ │ │ ├── sbgst.hpp │ │ │ │ ├── sbtrd.hpp │ │ │ │ ├── spcon.hpp │ │ │ │ ├── sprfs.hpp │ │ │ │ ├── sptrd.hpp │ │ │ │ ├── sptrf.hpp │ │ │ │ ├── sptri.hpp │ │ │ │ ├── sptrs.hpp │ │ │ │ ├── stebz.hpp │ │ │ │ ├── stedc.hpp │ │ │ │ ├── stegr.hpp │ │ │ │ ├── stein.hpp │ │ │ │ ├── stemr.hpp │ │ │ │ ├── steqr.hpp │ │ │ │ ├── sterf.hpp │ │ │ │ ├── sycon.hpp │ │ │ │ ├── sygst.hpp │ │ │ │ ├── syrfs.hpp │ │ │ │ ├── sytrd.hpp │ │ │ │ ├── sytrf.hpp │ │ │ │ ├── sytri.hpp │ │ │ │ ├── sytrs.hpp │ │ │ │ ├── tbcon.hpp │ │ │ │ ├── tbrfs.hpp │ │ │ │ ├── tbtrs.hpp │ │ │ │ ├── tftri.hpp │ │ │ │ ├── tgevc.hpp │ │ │ │ ├── tgexc.hpp │ │ │ │ ├── tgsen.hpp │ │ │ │ ├── tgsja.hpp │ │ │ │ ├── tgsna.hpp │ │ │ │ ├── tgsyl.hpp │ │ │ │ ├── tpcon.hpp │ │ │ │ ├── tprfs.hpp │ │ │ │ ├── tptri.hpp │ │ │ │ ├── tptrs.hpp │ │ │ │ ├── trcon.hpp │ │ │ │ ├── trevc.hpp │ │ │ │ ├── trexc.hpp │ │ │ │ ├── trrfs.hpp │ │ │ │ ├── trsen.hpp │ │ │ │ ├── trsna.hpp │ │ │ │ ├── trsyl.hpp │ │ │ │ ├── trtri.hpp │ │ │ │ ├── trtrs.hpp │ │ │ │ ├── tzrzf.hpp │ │ │ │ ├── ungbr.hpp │ │ │ │ ├── unghr.hpp │ │ │ │ ├── unglq.hpp │ │ │ │ ├── ungql.hpp │ │ │ │ ├── ungqr.hpp │ │ │ │ ├── ungrq.hpp │ │ │ │ ├── ungtr.hpp │ │ │ │ ├── unmbr.hpp │ │ │ │ ├── unmhr.hpp │ │ │ │ ├── unmlq.hpp │ │ │ │ ├── unmql.hpp │ │ │ │ ├── unmqr.hpp │ │ │ │ ├── unmrq.hpp │ │ │ │ ├── unmrz.hpp │ │ │ │ ├── unmtr.hpp │ │ │ │ ├── upgtr.hpp │ │ │ │ └── upmtr.hpp │ │ │ ├── detail │ │ │ │ ├── clapack.h │ │ │ │ ├── clapack_option.hpp │ │ │ │ ├── lapack.h │ │ │ │ ├── lapack_names.h │ │ │ │ └── lapack_option.hpp │ │ │ ├── driver.hpp │ │ │ ├── driver │ │ │ │ ├── gbsv.hpp │ │ │ │ ├── gbsvx.hpp │ │ │ │ ├── gees.hpp │ │ │ │ ├── geesx.hpp │ │ │ │ ├── geev.hpp │ │ │ │ ├── geevx.hpp │ │ │ │ ├── gegv.hpp │ │ │ │ ├── gejsv.hpp │ │ │ │ ├── gels.hpp │ │ │ │ ├── gelsd.hpp │ │ │ │ ├── gelss.hpp │ │ │ │ ├── gelsy.hpp │ │ │ │ ├── gesdd.hpp │ │ │ │ ├── gesv.hpp │ │ │ │ ├── gesvd.hpp │ │ │ │ ├── gesvx.hpp │ │ │ │ ├── gges.hpp │ │ │ │ ├── ggesx.hpp │ │ │ │ ├── ggev.hpp │ │ │ │ ├── ggevx.hpp │ │ │ │ ├── ggglm.hpp │ │ │ │ ├── gglse.hpp │ │ │ │ ├── ggsvd.hpp │ │ │ │ ├── gtsv.hpp │ │ │ │ ├── gtsvx.hpp │ │ │ │ ├── hbev.hpp │ │ │ │ ├── hbevd.hpp │ │ │ │ ├── hbevx.hpp │ │ │ │ ├── hbgv.hpp │ │ │ │ ├── hbgvd.hpp │ │ │ │ ├── hbgvx.hpp │ │ │ │ ├── heev.hpp │ │ │ │ ├── heevd.hpp │ │ │ │ ├── heevr.hpp │ │ │ │ ├── heevx.hpp │ │ │ │ ├── hegv.hpp │ │ │ │ ├── hegvd.hpp │ │ │ │ ├── hegvx.hpp │ │ │ │ ├── hesv.hpp │ │ │ │ ├── hesvx.hpp │ │ │ │ ├── hpev.hpp │ │ │ │ ├── hpevd.hpp │ │ │ │ ├── hpevx.hpp │ │ │ │ ├── hpgv.hpp │ │ │ │ ├── hpgvd.hpp │ │ │ │ ├── hpgvx.hpp │ │ │ │ ├── hpsv.hpp │ │ │ │ ├── hpsvx.hpp │ │ │ │ ├── iter_gesv.hpp │ │ │ │ ├── iter_posv.hpp │ │ │ │ ├── pbsv.hpp │ │ │ │ ├── pbsvx.hpp │ │ │ │ ├── posv.hpp │ │ │ │ ├── posvx.hpp │ │ │ │ ├── ppsv.hpp │ │ │ │ ├── ppsvx.hpp │ │ │ │ ├── ptsv.hpp │ │ │ │ ├── ptsvx.hpp │ │ │ │ ├── sbev.hpp │ │ │ │ ├── sbevd.hpp │ │ │ │ ├── sbevx.hpp │ │ │ │ ├── sbgv.hpp │ │ │ │ ├── sbgvd.hpp │ │ │ │ ├── sbgvx.hpp │ │ │ │ ├── spev.hpp │ │ │ │ ├── spevd.hpp │ │ │ │ ├── spevx.hpp │ │ │ │ ├── spgv.hpp │ │ │ │ ├── spgvd.hpp │ │ │ │ ├── spgvx.hpp │ │ │ │ ├── spsv.hpp │ │ │ │ ├── spsvx.hpp │ │ │ │ ├── stev.hpp │ │ │ │ ├── stevd.hpp │ │ │ │ ├── stevr.hpp │ │ │ │ ├── stevx.hpp │ │ │ │ ├── syev.hpp │ │ │ │ ├── syevd.hpp │ │ │ │ ├── syevr.hpp │ │ │ │ ├── syevx.hpp │ │ │ │ ├── sygv.hpp │ │ │ │ ├── sygvd.hpp │ │ │ │ ├── sygvx.hpp │ │ │ │ ├── sysv.hpp │ │ │ │ └── sysvx.hpp │ │ │ └── workspace.hpp │ │ │ ├── lower.hpp │ │ │ ├── min_rank.hpp │ │ │ ├── mtl │ │ │ ├── compressed2D.hpp │ │ │ ├── dense2D.hpp │ │ │ ├── dense_vector.hpp │ │ │ └── detail │ │ │ │ └── convert_to.hpp │ │ │ ├── noop.hpp │ │ │ ├── num_columns.hpp │ │ │ ├── num_rows.hpp │ │ │ ├── rank.hpp │ │ │ ├── remove_imaginary.hpp │ │ │ ├── row.hpp │ │ │ ├── size.hpp │ │ │ ├── std.hpp │ │ │ ├── std │ │ │ ├── valarray.hpp │ │ │ └── vector.hpp │ │ │ ├── stride.hpp │ │ │ ├── symm.hpp │ │ │ ├── tag.hpp │ │ │ ├── traits │ │ │ ├── detail │ │ │ │ └── utils.hpp │ │ │ ├── type.h │ │ │ ├── type.hpp │ │ │ └── type_traits.hpp │ │ │ ├── trans.hpp │ │ │ ├── trans_tag.hpp │ │ │ ├── ublas.hpp │ │ │ ├── ublas │ │ │ ├── banded.hpp │ │ │ ├── detail │ │ │ │ ├── basic_ublas_adaptor.hpp │ │ │ │ └── convert_to.hpp │ │ │ ├── hermitian.hpp │ │ │ ├── matrix.hpp │ │ │ ├── matrix_expression.hpp │ │ │ ├── matrix_proxy.hpp │ │ │ ├── matrix_sparse.hpp │ │ │ ├── scalar_vector.hpp │ │ │ ├── storage.hpp │ │ │ ├── symmetric.hpp │ │ │ ├── triangular.hpp │ │ │ ├── vector.hpp │ │ │ ├── vector_expression.hpp │ │ │ ├── vector_proxy.hpp │ │ │ └── vector_sparse.hpp │ │ │ ├── umfpack │ │ │ ├── umfpack.hpp │ │ │ ├── umfpack_inc.hpp │ │ │ └── umfpack_overloads.hpp │ │ │ ├── unit_lower.hpp │ │ │ ├── unit_upper.hpp │ │ │ ├── uplo_tag.hpp │ │ │ ├── upper.hpp │ │ │ ├── value_type.hpp │ │ │ ├── vector_view.hpp │ │ │ └── views.hpp │ ├── po_utf8_codecvt_facet.cpp.in │ ├── serialization_intel.patch │ ├── sr_utf8_codecvt_facet.cpp.in │ └── throw_exception.C └── ietl │ ├── bandlanczos.h │ ├── bicgstabl.h │ ├── cg.h │ ├── complex.h │ ├── config.h.in │ ├── fmatrix.h │ ├── gmres.h │ ├── ietl2lapack.h │ ├── interface │ ├── blas.h │ ├── blitz.h │ ├── mtl.h │ ├── ublas.h │ └── valarray.h │ ├── inverse.h │ ├── iteration.h │ ├── jacobi.h │ ├── jd.h │ ├── krylov_wrapper.h │ ├── lanczos.h │ ├── matrix.h │ ├── power.h │ ├── rayleigh.h │ ├── simple_arnoldi.h │ ├── tmatrix.h │ ├── traits.h │ └── vectorspace.h ├── test ├── CMakeLists.txt ├── accumulator │ ├── CMakeLists.txt │ ├── count.cpp │ └── mean.cpp ├── alea │ ├── CMakeLists.txt │ ├── binned_data.C │ ├── binned_data.output │ ├── complexobservable.C │ ├── detailedbinning.C │ ├── detailedbinning.input │ ├── detailedbinning.output │ ├── dumpbench.C │ ├── histogram.C │ ├── histogram.output │ ├── histogram2.C │ ├── mcanalyze.C │ ├── mcdata.C │ ├── mcdata.output │ ├── mcdata2.C │ ├── mcdata2.output │ ├── mergeobs_divide.C │ ├── mergeobs_divide.op │ ├── mergeobs_log.C │ ├── mergeobs_log.op │ ├── mergeobs_plus.C │ ├── mergeobs_plus.op │ ├── mergeobs_plus2.C │ ├── mergeobs_plus2.op │ ├── mergeobs_times.C │ ├── mergeobs_times.op │ ├── mergeobs_times2.C │ ├── mergeobs_times2.op │ ├── observableset_hdf5.C │ ├── observableset_hdf5.output │ ├── observableset_mpi.C │ ├── observableset_mpi.op-2 │ ├── observableset_xml.C │ ├── observableset_xml.input │ ├── observableset_xml.output │ ├── signed.C │ ├── signed.input │ ├── signed.output │ ├── simpleobseval.C │ ├── simpleobseval.output │ ├── testobservableset.C │ ├── testobservableset.input │ ├── testobservableset.output │ ├── vectorobseval.C │ └── vectorobseval.output ├── fixed_capacity │ ├── CMakeLists.txt │ ├── fixed_capacity_deque.C │ ├── fixed_capacity_deque.output │ ├── fixed_capacity_traits.C │ ├── fixed_capacity_traits.output │ ├── fixed_capacity_vector.C │ ├── fixed_capacity_vector.output │ ├── test_deque.C │ ├── test_deque.output │ ├── test_main.h │ ├── test_vector.C │ ├── test_vector.output │ ├── timing_queue.C │ ├── timing_stack.C │ └── timing_vector.C ├── graph │ ├── CMakeLists.txt │ ├── canonical_label_random_graphs_test.cpp │ ├── canonical_label_test.cpp │ ├── canonical_label_test.output │ ├── canonical_label_with_color_symmetries_test.cpp │ ├── canonical_label_with_color_symmetries_test.output │ ├── colored_lattice_constant_test.cpp │ ├── colored_lattice_constant_test2.cpp │ ├── embedding_test.cpp │ ├── embedding_test.output │ ├── generate_random_graph.hpp │ ├── is_embeddable_with_color_symmetries_test.cpp │ ├── is_embeddable_with_color_symmetries_test.output │ ├── iso_simple.cpp │ ├── lattice_constant_matrix.cpp │ ├── lattice_constant_square_test.cpp │ ├── lattice_constant_tri_test.cpp │ ├── orbit_test.cpp │ ├── orbit_test.output │ ├── subgraph_generator_test.cpp │ ├── subgraph_generator_test.output │ ├── subgraph_generator_test_colored_edges.cpp │ ├── subgraph_generator_test_colored_edges.output │ ├── subgraph_generator_test_colored_edges2.cpp │ ├── subgraph_generator_test_colored_edges_with_sym.cpp │ ├── subgraph_generator_test_colored_edges_with_sym.output │ ├── subgraph_generator_test_colored_edges_with_sym2.cpp │ └── utils_test.cpp ├── hdf5 │ ├── CMakeLists.txt │ ├── creator.hpp │ ├── hdf5_bool.cpp │ ├── hdf5_complex.cpp │ ├── hdf5_copy.cpp │ ├── hdf5_exceptions.cpp │ ├── hdf5_exceptions.output │ ├── hdf5_family.cpp │ ├── hdf5_fortran_string.cpp │ ├── hdf5_fortran_string.h5 │ ├── hdf5_ising.cpp │ ├── hdf5_large.cpp │ ├── hdf5_memory.cpp │ ├── hdf5_misc.cpp │ ├── hdf5_multi_array.cpp │ ├── hdf5_multiarchive.cpp │ ├── hdf5_observableset.cpp │ ├── hdf5_omp.cpp │ ├── hdf5_pair.cpp │ ├── hdf5_parms.cpp │ ├── hdf5_real_complex.cpp │ ├── hdf5_real_complex_matrix.cpp │ ├── hdf5_real_complex_vec.cpp │ ├── hdf5_replace.cpp │ ├── hdf5_valgrind.cpp │ ├── hdf5_vecveccplx.cpp │ ├── hdf5_vecvecdbl.cpp │ └── type_check.cpp.in ├── lattice │ ├── CMakeLists.txt │ ├── coloring.C │ ├── coloring.input │ ├── coloring.output │ ├── example1.C │ ├── example1.output │ ├── example10.C │ ├── example10.input │ ├── example10.output │ ├── example11.C │ ├── example11.input │ ├── example11.output │ ├── example2.C │ ├── example2.output │ ├── example3.C │ ├── example3.output │ ├── example4.C │ ├── example4.input │ ├── example4.output │ ├── example5.C │ ├── example5.input │ ├── example5.output │ ├── example6.C │ ├── example6.input │ ├── example6.output │ ├── example7.C │ ├── example7.input │ ├── example7.output │ ├── example8.C │ ├── example8.input │ ├── example8.output │ ├── example9.C │ ├── example9.input │ ├── example9.output │ ├── label.C │ ├── label.input │ ├── label.output │ ├── parameters.in │ ├── parameters_complex.in │ ├── parity.C │ ├── parity.input │ └── parity.output ├── model │ ├── CMakeLists.txt │ ├── example1.C │ ├── example1.output │ ├── example10.C │ ├── example10.input │ ├── example10.output │ ├── example11.C │ ├── example11.input │ ├── example11.output │ ├── example12.C │ ├── example12.input │ ├── example12.output │ ├── example13.C │ ├── example13.input │ ├── example13.output │ ├── example14.C │ ├── example14.input │ ├── example14.output │ ├── example15.C │ ├── example15.input │ ├── example15.output │ ├── example16.C │ ├── example16.input │ ├── example16.output │ ├── example17.C │ ├── example17.input │ ├── example17.output │ ├── example18.C │ ├── example18.output │ ├── example2.C │ ├── example2.output │ ├── example3.C │ ├── example3.output │ ├── example4.C │ ├── example4.output │ ├── example5.C │ ├── example5.output │ ├── example6.C │ ├── example6.output │ ├── example7.C │ ├── example7.output │ ├── example8.C │ ├── example8.input │ ├── example8.output │ ├── example9.C │ ├── example9.output │ └── parameters.in ├── ngs │ ├── CMakeLists.txt │ ├── alea │ │ ├── CMakeLists.txt │ │ ├── error_archetype.hpp │ │ ├── hist_archetype.hpp │ │ ├── mean_archetype.hpp │ │ ├── ngs_alea_compare.cpp │ │ ├── ngs_alea_count_test_compile.cpp │ │ ├── ngs_alea_count_test_runtime.cpp │ │ ├── ngs_alea_ctor_test_compile.cpp │ │ ├── ngs_alea_ctor_test_runtime.cpp │ │ ├── ngs_alea_error_test_compile.cpp │ │ ├── ngs_alea_error_test_runtime.cpp │ │ ├── ngs_alea_fix_size_test_compile.cpp │ │ ├── ngs_alea_fix_size_test_runtime.cpp │ │ ├── ngs_alea_log_test_compile.cpp │ │ ├── ngs_alea_log_test_runtime.cpp │ │ ├── ngs_alea_max_num_test_compile.cpp │ │ ├── ngs_alea_max_num_test_runtime.cpp │ │ ├── ngs_alea_mean_test_compile.cpp │ │ ├── ngs_alea_mean_test_runtime.cpp │ │ ├── ngs_alea_next.cpp │ │ ├── ngs_alea_stream_test_compile.cpp │ │ ├── ngs_alea_stream_test_runtime.cpp │ │ ├── ngs_alea_value_type_test.cpp │ │ ├── ngs_alea_weight_type_test.cpp │ │ ├── ngs_alea_wrapper_test_compile.cpp │ │ └── ngs_alea_wrapper_test_runtime.cpp │ ├── ngs_hash.cpp │ ├── ngs_hdf5.cpp │ ├── params │ │ ├── CMakeLists.txt │ │ ├── assign.cpp │ │ ├── default.cpp │ │ ├── not_found.cpp │ │ ├── ordering.cpp │ │ ├── param_not_found.output │ │ ├── stream.cpp │ │ └── todo.cpp │ └── scheduler │ │ ├── CMakeLists.txt │ │ ├── sum_mpi.cpp │ │ └── sum_single.cpp ├── numeric │ ├── CMakeLists.txt │ ├── accumulate_if.C │ ├── matrix_algorithms.C │ ├── matrix_column_view.C │ ├── matrix_deprecated_hdf5_format_test.C │ ├── matrix_deprecated_hdf5_format_test.h5 │ ├── matrix_deprecated_hdf5_format_test.output │ ├── matrix_hdf5.C │ ├── matrix_transpose_view.C │ ├── matrix_ublas_sparse_functions.C │ ├── matrix_unit_tests.C │ ├── matrix_unit_tests.hpp │ ├── real_tests.C │ ├── real_tests.output │ ├── vector_functions.C │ ├── vector_functions.output │ ├── vector_valarray_conversion.C │ └── vector_valarray_conversion.output ├── osiris │ ├── CMakeLists.txt │ ├── boostdump.C │ ├── boostdump.output │ ├── boostdump2.C │ ├── boostdump2.input.in │ ├── boostdump2.output │ ├── boostdump3.C │ ├── boostdump3.output │ ├── boostdump4.C │ ├── boostdump4.output │ ├── os.C │ ├── sizeof.C │ ├── xdrdump.C │ ├── xdrdump.output │ ├── xdrdump2.C │ ├── xdrdump2.dump │ ├── xdrdump2.input.cmake │ ├── xdrdump2.input.in │ └── xdrdump2.output ├── parameter │ ├── CMakeLists.txt │ ├── expression.C │ ├── expression.input │ ├── expression.input2 │ ├── expression.output │ ├── expression2.C │ ├── expression2.output │ ├── flatten.C │ ├── flatten.input │ ├── flatten.output │ ├── parameter.C │ ├── parameter.input │ ├── parameter.output │ ├── parameterlist.C │ ├── parameterlist.input │ ├── parameterlist.output │ ├── parameterlist_xml.C │ ├── parameterlist_xml.input │ ├── parameterlist_xml.output │ ├── parameters.C │ ├── parameters.input │ ├── parameters.output │ ├── parameters_hdf5.C │ ├── parameters_hdf5.input │ ├── parameters_hdf5.output │ ├── parameters_mpi.C │ ├── parameters_mpi.ip-2 │ ├── parameters_mpi.op-2 │ ├── parameters_xml.C │ ├── parameters_xml.input │ └── parameters_xml.output ├── parapack │ ├── CMakeLists.txt │ ├── clone_info.C │ ├── clone_info.ip │ ├── clone_info.op │ ├── clone_mpi.C │ ├── clone_mpi.ip-4 │ ├── clone_phase.C │ ├── clone_phase.ip │ ├── clone_phase.op │ ├── clone_timer.C │ ├── collect_mpi.C │ ├── collect_mpi.ip-4 │ ├── comm_mpi.C │ ├── comm_mpi.ip-4 │ ├── exmc_optimize.C │ ├── exmc_optimize.op │ ├── exp_number.C │ ├── exp_number.op │ ├── filelock_mpi.C │ ├── filelock_mpi.ip-4 │ ├── footprint.C │ ├── halt_mpi.C │ ├── id2string.C │ ├── id2string.op │ ├── info_test.C │ ├── info_test_mpi.C │ ├── integer_range.C │ ├── integer_range.ip │ ├── integer_range.op │ ├── linear_regression.C │ ├── linear_regression.op │ ├── merge.C │ ├── merge.op │ ├── percentage.C │ ├── percentage.op │ ├── process_mpi.C │ ├── process_mpi.op-8 │ ├── temperature_scan.C │ ├── temperature_scan.ip │ ├── temperature_scan.op │ ├── time.C │ ├── version.C │ ├── wl_weight.C │ ├── wl_weight.op │ ├── worker_mpi.C │ ├── worker_mpi.ip-4 │ └── worker_mpi.op-4 ├── parser │ ├── CMakeLists.txt │ ├── xmlhandler.C │ ├── xmlhandler.input │ ├── xmlhandler.output │ ├── xmlparser.C │ ├── xmlparser.input │ ├── xmlparser.output │ ├── xmlstream.C │ └── xmlstream.output ├── pyalps │ ├── CMakeLists.txt │ ├── accumulators.py │ ├── hlist_test.output │ ├── hlist_test.py │ ├── loadobs.cpp │ ├── loadobs.py │ ├── mcanalyze.py │ ├── mcdata.output │ ├── mcdata_test.py │ ├── numpylarge.py │ ├── pyhdf5_test.py │ ├── pyhdf5io.output │ ├── pyhdf5io_test.py │ ├── pyioarchive.py │ ├── pyparams.output │ ├── pyparams_test.py │ └── run_python_test.cmake ├── random │ ├── CMakeLists.txt │ ├── random_choice.C │ ├── uniform_on_sphere_n.C │ └── uniform_on_sphere_n.op └── utility │ ├── CMakeLists.txt │ ├── bitops.cpp │ └── vmusage.cpp ├── tool ├── CMakeLists.txt ├── alea │ ├── CMakeLists.txt │ ├── mcanalyze_tools.hpp │ ├── mcanalyze_tools.ipp │ ├── mcanalyze_tools.py │ ├── mean.cpp │ ├── mean.py │ ├── variance.cpp │ └── variance.py ├── alpspython.bat.in ├── alpspython.in ├── alpsvars.csh.in ├── alpsvars.sh.in ├── archive.cpp ├── archive_index.cpp ├── archive_index.hpp ├── archive_node.cpp ├── archive_node.hpp ├── archive_plot.cpp ├── archive_plot.hpp ├── archive_sqlite.cpp ├── archive_sqlite.hpp ├── archive_xml.cpp ├── archive_xml.hpp ├── archivecat ├── changestylesheet ├── compactrun.C ├── config.py.in ├── convert2html ├── convert2text ├── convert2xml.C ├── default_model.hpp ├── extractgp ├── extracthtml ├── extractmpl ├── extracttext ├── extractxmgr ├── lattice-preview.in ├── lattice2xml.C ├── lattice2xml.ip ├── lattice2xml.op ├── lattices_to_vt.py ├── license.py ├── maxent.cpp ├── maxent.hpp ├── maxent_helper.cpp ├── maxent_parms.cpp ├── maxent_parms.hpp ├── maxent_simulation.cpp ├── msxsl.exe ├── p2h5.cpp ├── parameter2hdf5.C ├── parameter2xml.C ├── pconfig.C ├── pevaluate.C ├── plot2gp ├── plot2html ├── plot2mpl ├── plot2text ├── plot2xmgr ├── pltgraph.py ├── postflight.sh.in ├── poutput.C ├── preview.py ├── printgraph.C ├── snap2vtk.C ├── transformall ├── txt2archive.C ├── use_local_stylesheet ├── vispython.bat.in ├── vispython.in ├── xml2archive.C └── xslttransform ├── tutorials ├── CMakeLists.txt ├── alpsize-00-make │ ├── Makefile │ └── hello.C ├── alpsize-01-cmake │ ├── CMakeLists.txt │ ├── hello.C │ └── hello.op ├── alpsize-02-original-c │ ├── CMakeLists.txt │ └── wolff.c ├── alpsize-03-basic-cpp │ ├── CMakeLists.txt │ └── wolff.C ├── alpsize-04-stl │ ├── CMakeLists.txt │ └── wolff.C ├── alpsize-05-boost │ ├── CMakeLists.txt │ ├── wolff.C │ └── wolff.op ├── alpsize-06-parameters │ ├── CMakeLists.txt │ ├── wolff.C │ ├── wolff.ip │ └── wolff.op ├── alpsize-07-alea │ ├── CMakeLists.txt │ ├── wolff.C │ ├── wolff.ip │ └── wolff.op ├── alpsize-08-lattice │ ├── CMakeLists.txt │ ├── lattice.C │ ├── lattice.ip │ ├── lattice.op │ ├── wolff.C │ ├── wolff.ip │ └── wolff.op ├── alpsize-09-scheduler │ ├── CMakeLists.txt │ ├── hello.C │ ├── hello.ip │ ├── hello.op │ ├── hello_params │ ├── hello_worker.C │ ├── hello_worker.h │ ├── wolff.C │ ├── wolff.ip │ ├── wolff.op │ ├── wolff_params │ ├── wolff_worker.C │ └── wolff_worker.h ├── alpsize-10-fortran-scheduler │ ├── CMakeLists.txt │ ├── hello.C │ ├── hello_impl.f90 │ └── hello_params ├── alpsize-11-fortran-ising │ ├── CMakeLists.txt │ ├── ising.C │ ├── ising_impl.f90 │ ├── ising_original.f │ ├── ising_params │ └── template.f90 ├── cleanup.sh ├── code-01-python │ ├── ising-skeleton.py │ └── solution │ │ ├── ising.py │ │ ├── ising_binder.py │ │ └── run.py ├── code-02-c++ │ ├── Makefile │ ├── ising-skeleton.cpp │ └── solution │ │ ├── Makefile │ │ └── ising.cpp ├── code-03-vistrails-python-source │ └── solution │ │ └── pythonsourcetutorial.vt ├── code-04-vistrails-simple-package │ ├── ising-package │ │ ├── __init__.py │ │ └── init.py │ └── solution │ │ └── ising-package │ │ ├── __init__.py │ │ ├── init.py │ │ └── ising.py ├── code-05-vistrails-package │ └── alpsising │ │ ├── __init__.py │ │ ├── init.py │ │ └── ising.py ├── code-06-mcmain-c++ │ ├── CMakeLists.txt │ ├── ising.cpp │ ├── ising.hpp │ ├── main.cpp │ └── param.txt ├── code-07-mcmain-mcbase │ ├── CMakeLists.txt │ ├── export.cpp │ ├── export.py │ ├── heisenberg │ │ ├── 1d_lattice │ │ │ ├── CMakeLists.txt │ │ │ ├── heisenberg.cpp │ │ │ ├── heisenberg.hpp │ │ │ ├── helper.hpp │ │ │ ├── single.cpp │ │ │ └── test │ │ │ │ └── param.txt │ │ ├── howto │ │ │ ├── howto.html │ │ │ ├── plot_chi.png │ │ │ ├── plot_corr.png │ │ │ └── pygments.css │ │ ├── nd_lattice │ │ │ ├── CMakeLists.txt │ │ │ ├── heisenberg.cpp │ │ │ ├── heisenberg.hpp │ │ │ ├── helper.hpp │ │ │ ├── single.cpp │ │ │ └── test │ │ │ │ └── param.txt │ │ └── o_n_model │ │ │ ├── CMakeLists.txt │ │ │ ├── experiment │ │ │ ├── experiment.py │ │ │ └── param.txt │ │ │ ├── export.cpp │ │ │ ├── heisenberg.cpp │ │ │ ├── ndim_spin.hpp │ │ │ ├── test │ │ │ ├── 3d3d.py │ │ │ └── param.txt │ │ │ └── tinyvector │ │ │ ├── tinyvector.hpp │ │ │ ├── tinyvector_default.hpp │ │ │ └── tinyvector_kernels.hpp │ ├── ising.cpp │ ├── ising.hpp │ ├── mpi.cpp │ ├── mpi_pscan.cpp │ ├── param.0.txt │ ├── param.1.txt │ ├── param.txt │ └── single.cpp ├── code-08-mcmain-python │ ├── ising.py │ ├── main.py │ └── param.txt ├── code-09-mcmain-python-hybrid │ ├── ising.py │ ├── main.py │ └── param.txt ├── dmft-02-hybridization │ ├── tutorial2.py │ ├── tutorial2_long.py │ └── tutorial2eval.py ├── dmft-03-interaction │ ├── tutorial3.py │ ├── tutorial3_long.py │ └── tutorial3eval.py ├── dmft-04-mott │ ├── tutorial4a.py │ └── tutorial4b.py ├── dmft-05-osmt │ ├── tutorial5a.py │ └── tutorial5b.py ├── dmft-06-paramagnet │ ├── hyb │ │ └── tutorial6a.py │ └── int │ │ └── tutorial6b.py ├── dmft-07-hirschfye │ ├── tutorial7.py │ ├── tutorial7_long.py │ └── tutorial7eval.py ├── dmft-08-lattices │ ├── DOS │ │ ├── DOS_Bethe │ │ ├── DOS_Bethe.py │ │ ├── DOS_Cubic.py │ │ ├── DOS_Cubic_GRID360 │ │ ├── DOS_Hexagonal.py │ │ ├── DOS_Hexagonal_GRID4000 │ │ ├── DOS_Square.py │ │ └── DOS_Square_GRID4000 │ ├── tutorial8a.py │ └── tutorial8b.py ├── dmrg-01-dmrg │ ├── build_lattice.py │ ├── my_lattice.xml │ ├── my_lattices.xml │ ├── spin_one │ ├── spin_one.py │ ├── spin_one_half │ ├── spin_one_half.py │ ├── spin_one_half_multiple │ ├── spin_one_half_multiple.py │ ├── spin_one_multiple │ └── spin_one_multiple.py ├── dmrg-02-gaps │ ├── my_lattices.xml │ ├── spin_one_gap.py │ ├── spin_one_gap_multiple.py │ ├── spin_one_half_gap │ ├── spin_one_half_gap.py │ ├── spin_one_half_gap_multiple.py │ ├── spin_one_half_triplet │ ├── spin_one_half_triplet.py │ └── spin_one_triplet.py ├── dmrg-03-local-observables │ ├── my_lattices.xml │ ├── spin_one │ ├── spin_one.py │ ├── spin_one_half │ └── spin_one_half.py ├── dmrg-04-correlations │ ├── my_lattices.xml │ ├── spin_one │ ├── spin_one.py │ ├── spin_one_half │ └── spin_one_half.py ├── dwa-01-bosons │ ├── parm1a │ ├── parm1b │ ├── tutorial1a.py │ └── tutorial1b.py ├── dwa-02-density-profile │ ├── parm2a │ ├── parm2b │ ├── tutorial2a.py │ └── tutorial2b.py ├── ed-01-sparsediag │ ├── parm1a │ └── tutorial1a.py ├── ed-02-gaps │ ├── parm2a │ ├── parm2b │ ├── tutorial2a.py │ ├── tutorial2b.py │ └── tutorial2c.py ├── ed-03-1dspectra │ ├── chain.py │ ├── dimers.py │ ├── ladder.py │ ├── parm_chain │ ├── parm_dimers │ └── parm_ladder ├── ed-04-criticality │ ├── heisenberg.py │ ├── ising.py │ ├── parm_heisenberg │ └── parm_ising ├── ed-05-nnn-chain │ ├── nnn-crit-pt.py │ ├── nnn-heisenberg.py │ ├── parm_nnn-heisenberg │ └── parm_nnn-pt ├── ed-06-fulldiag │ ├── dd-graph.xml │ ├── model-dspin.xml │ ├── parm6a │ ├── parm6b │ ├── parm6c │ ├── parm6d │ ├── tutorial6a.py │ ├── tutorial6b.py │ ├── tutorial6c.py │ ├── tutorial6d.py │ └── v15-graph.xml ├── hybridization-01-python │ ├── exact_diagonalization │ │ ├── Gt.dat │ │ ├── Gw.dat │ │ └── Sw.dat │ └── tutorial1.py ├── hybridization-02-kondo │ └── tutorial2.py ├── hybridization-03-retarded-interaction │ ├── results_U8.0_Uscr12.0_w12.0_beta50.0 │ │ ├── Gt.dat │ │ ├── Gtl.dat │ │ ├── Gw.dat │ │ ├── Gwl.dat │ │ ├── Sw.dat │ │ └── Swl.dat │ ├── results_U8.0_Uscr12.0_w16.0_beta50.0 │ │ ├── Gt.dat │ │ ├── Gtl.dat │ │ ├── Gw.dat │ │ ├── Gwl.dat │ │ ├── Sw.dat │ │ └── Swl.dat │ ├── results_U8.0_Uscr12.0_w2.0_beta50.0 │ │ ├── Gt.dat │ │ ├── Gtl.dat │ │ ├── Gw.dat │ │ ├── Gwl.dat │ │ ├── Sw.dat │ │ └── Swl.dat │ ├── results_U8.0_Uscr12.0_w4.0_beta50.0 │ │ ├── Gt.dat │ │ ├── Gtl.dat │ │ ├── Gw.dat │ │ ├── Gwl.dat │ │ ├── Sw.dat │ │ └── Swl.dat │ ├── results_U8.0_Uscr12.0_w6.0_beta50.0 │ │ ├── Gt.dat │ │ ├── Gtl.dat │ │ ├── Gw.dat │ │ ├── Gwl.dat │ │ ├── Sw.dat │ │ └── Swl.dat │ ├── results_U8.0_Uscr12.0_w8.0_beta50.0 │ │ ├── Gt.dat │ │ ├── Gtl.dat │ │ ├── Gw.dat │ │ ├── Gwl.dat │ │ ├── Sw.dat │ │ └── Swl.dat │ └── tutorial3.py ├── hybridization-04-spinfreezing │ ├── tutorial4a.py │ ├── tutorial4b.py │ └── tutorial4c.py ├── intro-01-basics │ ├── tutorial-binder.py │ ├── tutorial-evaluate.py │ ├── tutorial-full.py │ ├── tutorial-gnuplot.py │ ├── tutorial-graceplot.py │ ├── tutorial-magnetization.py │ ├── tutorial-prepareinput.py │ ├── tutorial-runsimulation.py │ └── tutorial-text.py ├── mc-01-autocorrelations │ ├── parm1a │ ├── parm1b │ ├── tutorial1a.py │ └── tutorial1b.py ├── mc-01b-equilibration-and-convergence │ ├── parm1a │ └── tutorial1a.py ├── mc-02-susceptibilities │ ├── parm2a │ ├── parm2b │ ├── parm2c │ ├── parm2d │ ├── tutorial2a.py │ ├── tutorial2b.py │ ├── tutorial2c.py │ ├── tutorial2d.py │ └── tutorial2full.py ├── mc-03-magnetization │ ├── parm3a │ ├── parm3b │ ├── tutorial3a.py │ ├── tutorial3b.py │ └── tutorial3full.py ├── mc-04-measurements │ ├── parm4 │ └── tutorial4.py ├── mc-05-bosons │ ├── parm5a │ ├── parm5b │ ├── tutorial5a.py │ └── tutorial5b.py ├── mc-06-qwl │ ├── parm6a │ ├── parm6b │ ├── parm6c │ ├── parm6d │ ├── tutorial6a.py │ ├── tutorial6b.py │ ├── tutorial6c.py │ └── tutorial6d.py ├── mc-07-phase-transition │ ├── parm7a │ ├── parm7b │ ├── tutorial7a.py │ └── tutorial7b.py ├── mc-08-quantum-phase-transition │ ├── parm8a │ ├── parm8b │ ├── parm8c │ ├── parm8d │ ├── tutorial8a.py │ ├── tutorial8b.py │ ├── tutorial8c.py │ └── tutorial8d.py ├── mc-09-snapshot │ ├── clean.sh │ ├── parm9a │ ├── parm9b │ ├── parm9c │ ├── parm9d │ ├── plot9a.py │ ├── plot9b.pvsm │ ├── plot9c.pvsm │ ├── plot9d.pvsm │ └── run.sh ├── mps-01-optim │ ├── build_lattice.py │ ├── my_lattice.xml │ ├── my_lattices.xml │ ├── parm_spin_one │ ├── parm_spin_one_half │ ├── spin_one.py │ ├── spin_one_half.py │ ├── spin_one_half_multiple │ ├── spin_one_half_multiple.py │ ├── spin_one_multiple │ └── spin_one_multiple.py ├── mps-02-gaps │ ├── my_lattices.xml │ ├── parm_spin_one_half_gap │ ├── parm_spin_one_half_triplet │ ├── spin_one_half_gap.py │ └── spin_one_half_triplet.py ├── mps-03-local-observables │ ├── my_lattices.xml │ ├── parm_spin_one │ ├── parm_spin_one_half │ ├── spin_one.py │ └── spin_one_half.py ├── mps-04-correlations │ ├── my_lattices.xml │ ├── parm_spin_one │ ├── parm_spin_one_half │ ├── spin_one.py │ └── spin_one_half.py ├── mps-05-bhquench │ └── tutorial1a.py ├── mps-06-kink │ ├── magnetization_movie.py │ ├── tutorial_a.py │ ├── tutorial_b.py │ ├── tutorial_c.py │ └── tutorial_d.py ├── mps-example-01-string-order │ ├── mymodels.xml │ └── parms.py ├── mps-example-02-inhomogeneous │ └── parms.py ├── mps-example-03-complex │ ├── mymodels.xml │ └── parms.py ├── mps-example-04-random-field │ └── parms.py ├── ngs │ ├── 1_accumulator_only │ │ ├── ising.cpp │ │ ├── ising.hpp │ │ ├── main.cpp │ │ └── param.txt │ ├── 2_single_core │ │ ├── ising.cpp │ │ ├── ising.hpp │ │ ├── main.cpp │ │ └── param.txt │ ├── 3_mpi │ │ ├── ising.cpp │ │ ├── ising.hpp │ │ ├── main.cpp │ │ └── param.txt │ ├── 4_mpi_pscan │ │ ├── ising.cpp │ │ ├── ising.hpp │ │ ├── main.cpp │ │ ├── param.0.txt │ │ └── param.1.txt │ ├── 5_export_python │ │ ├── export2py.cpp │ │ ├── ising.cpp │ │ ├── ising.hpp │ │ └── main.py │ ├── 6_python_native │ │ ├── ising.py │ │ └── main.py │ └── 7_python_extend │ │ ├── ising.py │ │ └── main.py ├── notebook │ ├── en │ │ ├── DMFT-02_Hybridization.ipynb │ │ ├── DMFT-03_Interaction.ipynb │ │ ├── DMFT-04_Mott.ipynb │ │ ├── DMFT-05_OSMT.ipynb │ │ ├── DMFT-06_Paramagnet.ipynb │ │ ├── DMFT-07_Hirsch-Fye.ipynb │ │ ├── DMFT-08_Lattices.ipynb │ │ ├── DMRG-01_DMRG.ipynb │ │ ├── DMRG-02_Gaps.ipynb │ │ ├── DMRG-03_Local_Observables.ipynb │ │ ├── DMRG-04_Correlations.ipynb │ │ ├── DWA-01_Revisiting_MC05.ipynb │ │ ├── DWA-02_Density_Profile.ipynb │ │ ├── ED-01_SparseDiagonalization.ipynb │ │ ├── ED-02_Gaps.ipynb │ │ ├── ED-03_Spectra.ipynb │ │ ├── ED-04_Criticality.ipynb │ │ ├── ED-05_ED_Phase_Transition.ipynb │ │ ├── ED-06_FullDiagonalization.ipynb │ │ ├── MC-01(a)_Autocorrelations.ipynb │ │ ├── MC-01(b)_Equilibration.ipynb │ │ ├── MC-02_Susceptibilities.ipynb │ │ ├── MC-03_Magnetization.ipynb │ │ ├── MC-04_Measurements.ipynb │ │ ├── MC-05_Bosons.ipynb │ │ ├── MC-06_QWL.ipynb │ │ ├── MC-07_Phase_Transition.ipynb │ │ ├── MC-08_Quantum_Phase_Transition.ipynb │ │ ├── TEBD-01_bhquench.ipynb │ │ └── TEBD-02_kink.ipynb │ └── ja │ │ ├── ED-01_SparseDiagonalization.ipynb │ │ ├── ED-02_Gaps.ipynb │ │ ├── ED-03_Spectra.ipynb │ │ ├── ED-04_Criticality.ipynb │ │ ├── ED-05_Phase_Transition.ipynb │ │ ├── ED-06_FullDiagonalization.ipynb │ │ ├── MC-01a_Autocorrelations.ipynb │ │ ├── MC-01b_Equilibration.ipynb │ │ ├── MC-02_Susceptibilities.ipynb │ │ ├── MC-03_Magnetization.ipynb │ │ ├── MC-04_Measurements.ipynb │ │ ├── MC-05_Bosons.ipynb │ │ ├── MC-06_QWL.ipynb │ │ ├── MC-07_Phase_Transition.ipynb │ │ ├── MC-08_Quantum_Phase_Transition.ipynb │ │ ├── crash_course_pyalps.ipynb │ │ ├── dd-graph.xml │ │ ├── ed01a │ │ ├── ed02a │ │ ├── ed02b │ │ ├── ed03a │ │ ├── ed03b │ │ ├── ed03c │ │ ├── ed04a │ │ ├── ed04b │ │ ├── ed06a │ │ ├── ed06b │ │ ├── ed06c │ │ ├── ed06d │ │ ├── mc01a_1 │ │ ├── mc01a_2 │ │ ├── mc01b │ │ ├── mc02a │ │ ├── mc02b │ │ ├── mc02c │ │ ├── mc02d │ │ ├── mc03a │ │ ├── mc03b │ │ ├── mc04 │ │ ├── mc05a │ │ ├── mc05b │ │ ├── mc06a │ │ ├── mc06b │ │ ├── mc06c │ │ ├── mc06d │ │ ├── mc07a │ │ ├── mc07b │ │ ├── mc08a │ │ ├── mc08b │ │ ├── mc08c │ │ ├── mc08d │ │ ├── model-dspin.xml │ │ ├── python.ipynb │ │ ├── tutorial_ed01a.py │ │ ├── tutorial_ed02a.py │ │ ├── tutorial_ed02b.py │ │ ├── tutorial_ed02c.py │ │ ├── tutorial_ed03a.py │ │ ├── tutorial_ed03b.py │ │ ├── tutorial_ed03c.py │ │ ├── tutorial_ed04a.py │ │ ├── tutorial_ed04b.py │ │ ├── tutorial_ed05b.py │ │ ├── tutorial_ed06a.py │ │ ├── tutorial_ed06b.py │ │ ├── tutorial_ed06c.py │ │ ├── tutorial_ed06d.py │ │ ├── tutorial_mc01a_1.py │ │ ├── tutorial_mc01a_2.py │ │ ├── tutorial_mc01b.py │ │ ├── tutorial_mc02a.py │ │ ├── tutorial_mc02b.py │ │ ├── tutorial_mc02c.py │ │ ├── tutorial_mc02d.py │ │ ├── tutorial_mc02full.py │ │ ├── tutorial_mc03a.py │ │ ├── tutorial_mc03b.py │ │ ├── tutorial_mc03full.py │ │ ├── tutorial_mc04.py │ │ ├── tutorial_mc05a.py │ │ ├── tutorial_mc05b.py │ │ ├── tutorial_mc06a.py │ │ ├── tutorial_mc06b.py │ │ ├── tutorial_mc06c.py │ │ ├── tutorial_mc06d.py │ │ ├── tutorial_mc07a.py │ │ ├── tutorial_mc07b.py │ │ ├── tutorial_mc08a.py │ │ ├── tutorial_mc08b.py │ │ ├── tutorial_mc08c.py │ │ └── v15-graph.xml ├── runtutorial.sh ├── tebd-01-bhquench │ ├── tutorial1a.py │ ├── tutorial1b.py │ └── tutorial1c.py ├── tebd-02-kink │ ├── tutorial2a.py │ ├── tutorial2b.py │ ├── tutorial2c.py │ └── tutorial2d.py ├── test_py.py └── test_vt.py └── vistrails ├── alps ├── MplXYPlotCell.xml ├── ShowListOfHTMLFiles.xml ├── ShowListOfPlots.xml ├── ShowListOfXMLFiles.xml ├── ShowMplPlot.xml ├── __init__.py.in ├── alpscore.py ├── alpsparameters.py ├── applications.py ├── dataset │ ├── __init__.py │ ├── dataset_core.py │ ├── dataset_evaluate.py │ ├── dataset_exceptions.py │ ├── dataset_fit.py │ ├── dataset_load.py │ ├── dataset_plot.py │ ├── dataset_select.py │ └── dataset_tools.py ├── init.py ├── lattices.py ├── models.py ├── parameters.py ├── plots.py ├── system.py ├── tools.py └── vistrails_mpl.py └── latex ├── alpsvistrails.sty ├── includevistrail.py └── vistrails.sty /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/CTestConfig.cmake -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README-package.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/README-package.txt -------------------------------------------------------------------------------- /README-py.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/README-py.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/README.txt -------------------------------------------------------------------------------- /Welcome.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/Welcome.txt -------------------------------------------------------------------------------- /applications/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/applications/CMakeLists.txt -------------------------------------------------------------------------------- /applications/diag/diag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/applications/diag/diag.h -------------------------------------------------------------------------------- /applications/dmft/qmc/main.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/applications/dmft/qmc/main.C -------------------------------------------------------------------------------- /applications/dmft/qmc/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/applications/dmft/qmc/xml.h -------------------------------------------------------------------------------- /applications/mc/simple/vtk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/applications/mc/simple/vtk.h -------------------------------------------------------------------------------- /applications/mc/simple/xy.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/applications/mc/simple/xy.C -------------------------------------------------------------------------------- /applications/mc/simple/xy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/applications/mc/simple/xy.h -------------------------------------------------------------------------------- /applications/mc/simple/xy.ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/applications/mc/simple/xy.ip -------------------------------------------------------------------------------- /applications/mc/simple/xy.op: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/applications/mc/simple/xy.op -------------------------------------------------------------------------------- /applications/mc/spins/fit.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/applications/mc/spins/fit.C -------------------------------------------------------------------------------- /applications/mc/spins/on.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/applications/mc/spins/on.h -------------------------------------------------------------------------------- /applications/mc/spins/xy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/applications/mc/spins/xy.h -------------------------------------------------------------------------------- /applications/qmc/dwa/dwa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/applications/qmc/dwa/dwa.cpp -------------------------------------------------------------------------------- /applications/qmc/dwa/dwa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/applications/qmc/dwa/dwa.hpp -------------------------------------------------------------------------------- /applications/qmc/qmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/applications/qmc/qmc.h -------------------------------------------------------------------------------- /applications/qmc/qmc.ngs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/applications/qmc/qmc.ngs.h -------------------------------------------------------------------------------- /applications/qmc/qwl/qwl.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/applications/qmc/qwl/qwl.C -------------------------------------------------------------------------------- /applications/qmc/sse/SSE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/applications/qmc/sse/SSE.cpp -------------------------------------------------------------------------------- /applications/qmc/sse/SSE.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/applications/qmc/sse/SSE.hpp -------------------------------------------------------------------------------- /applications/qmc/sse4/sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/applications/qmc/sse4/sse.h -------------------------------------------------------------------------------- /applications/test/parm.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/applications/test/parm.in -------------------------------------------------------------------------------- /config/ALPSBuildname.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/ALPSBuildname.cmake -------------------------------------------------------------------------------- /config/ALPSConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/ALPSConfig.cmake.in -------------------------------------------------------------------------------- /config/ALPSCore.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/ALPSCore.cmake -------------------------------------------------------------------------------- /config/ALPSTesting.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/ALPSTesting.cmake -------------------------------------------------------------------------------- /config/BoostUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/BoostUtils.cmake -------------------------------------------------------------------------------- /config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/CMakeLists.txt -------------------------------------------------------------------------------- /config/Compilers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/Compilers.cmake -------------------------------------------------------------------------------- /config/CrayXT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/CrayXT.cmake -------------------------------------------------------------------------------- /config/Distribution.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/Distribution.xml.in -------------------------------------------------------------------------------- /config/FindApache.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/FindApache.cmake -------------------------------------------------------------------------------- /config/FindBlitz.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/FindBlitz.cmake -------------------------------------------------------------------------------- /config/FindBoostSrc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/FindBoostSrc.cmake -------------------------------------------------------------------------------- /config/FindDocbookDtd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/FindDocbookDtd.cmake -------------------------------------------------------------------------------- /config/FindDocbookXsl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/FindDocbookXsl.cmake -------------------------------------------------------------------------------- /config/FindFFTW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/FindFFTW.cmake -------------------------------------------------------------------------------- /config/FindFop.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/FindFop.cmake -------------------------------------------------------------------------------- /config/FindLPSolve.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/FindLPSolve.cmake -------------------------------------------------------------------------------- /config/FindLapack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/FindLapack.cmake -------------------------------------------------------------------------------- /config/FindMPIForALPS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/FindMPIForALPS.cmake -------------------------------------------------------------------------------- /config/FindPyInstaller.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/FindPyInstaller.cmake -------------------------------------------------------------------------------- /config/FindPythonMod.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/FindPythonMod.cmake -------------------------------------------------------------------------------- /config/FindSQLite.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/FindSQLite.cmake -------------------------------------------------------------------------------- /config/FindSZIP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/FindSZIP.cmake -------------------------------------------------------------------------------- /config/FindSphinx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/FindSphinx.cmake -------------------------------------------------------------------------------- /config/FindSprng.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/FindSprng.cmake -------------------------------------------------------------------------------- /config/FindVistrails.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/FindVistrails.cmake -------------------------------------------------------------------------------- /config/FindXsltproc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/FindXsltproc.cmake -------------------------------------------------------------------------------- /config/FindZLIB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/FindZLIB.cmake -------------------------------------------------------------------------------- /config/GNUCompilers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/GNUCompilers.cmake -------------------------------------------------------------------------------- /config/IA32Compilers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/IA32Compilers.cmake -------------------------------------------------------------------------------- /config/IBMCompilers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/IBMCompilers.cmake -------------------------------------------------------------------------------- /config/Intel7.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/Intel7.cmake -------------------------------------------------------------------------------- /config/IntelAbe.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/IntelAbe.cmake -------------------------------------------------------------------------------- /config/IntelCompilers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/IntelCompilers.cmake -------------------------------------------------------------------------------- /config/KCCCompilers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/KCCCompilers.cmake -------------------------------------------------------------------------------- /config/MacPKG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/MacPKG.cmake -------------------------------------------------------------------------------- /config/UseALPS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/UseALPS.cmake -------------------------------------------------------------------------------- /config/UsePyInstaller.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/UsePyInstaller.cmake -------------------------------------------------------------------------------- /config/add_alps_test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/add_alps_test.cmake -------------------------------------------------------------------------------- /config/alps_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/alps_logo.png -------------------------------------------------------------------------------- /config/brutus-intel12.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/brutus-intel12.cmake -------------------------------------------------------------------------------- /config/brutus-mkl12.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/brutus-mkl12.cmake -------------------------------------------------------------------------------- /config/cray.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/cray.cmake -------------------------------------------------------------------------------- /config/debian/sid/.bzrignore: -------------------------------------------------------------------------------- 1 | debian 2 | -------------------------------------------------------------------------------- /config/debian/sid/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/debian/sid/changelog -------------------------------------------------------------------------------- /config/debian/sid/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /config/debian/sid/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/debian/sid/control -------------------------------------------------------------------------------- /config/debian/sid/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/debian/sid/copyright -------------------------------------------------------------------------------- /config/debian/sid/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/debian/sid/rules -------------------------------------------------------------------------------- /config/debian/sid/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /config/include.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/include.mk.in -------------------------------------------------------------------------------- /config/make_package.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/make_package.sh.in -------------------------------------------------------------------------------- /config/monch-intel.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/monch-intel.cmake -------------------------------------------------------------------------------- /config/passthru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/passthru.py -------------------------------------------------------------------------------- /config/preamble-light.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/preamble-light.in -------------------------------------------------------------------------------- /config/preamble.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/preamble.in -------------------------------------------------------------------------------- /config/preamble_py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/preamble_py.in -------------------------------------------------------------------------------- /config/py-compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/py-compile -------------------------------------------------------------------------------- /config/rosa.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/rosa.cmake -------------------------------------------------------------------------------- /config/run_test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/run_test.cmake -------------------------------------------------------------------------------- /config/run_test_mpi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/run_test_mpi.cmake -------------------------------------------------------------------------------- /config/t2k-intel11.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/t2k-intel11.cmake -------------------------------------------------------------------------------- /config/todi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/todi.cmake -------------------------------------------------------------------------------- /config/update_preamble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/update_preamble -------------------------------------------------------------------------------- /config/update_preamble_py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/config/update_preamble_py -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/autodoc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/autodoc.in -------------------------------------------------------------------------------- /doc/bb2db.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/bb2db.in -------------------------------------------------------------------------------- /doc/catalog.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/catalog.xml.in -------------------------------------------------------------------------------- /doc/db2html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/db2html.in -------------------------------------------------------------------------------- /doc/db2pdf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/db2pdf.in -------------------------------------------------------------------------------- /doc/doxygen.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/doxygen.conf.in -------------------------------------------------------------------------------- /doc/olddoc/alea/binning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/olddoc/alea/binning.html -------------------------------------------------------------------------------- /doc/olddoc/alea/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/olddoc/alea/index.html -------------------------------------------------------------------------------- /doc/olddoc/bitops.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/olddoc/bitops.html -------------------------------------------------------------------------------- /doc/olddoc/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/olddoc/config.html -------------------------------------------------------------------------------- /doc/olddoc/expression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/olddoc/expression.html -------------------------------------------------------------------------------- /doc/olddoc/functional.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/olddoc/functional.html -------------------------------------------------------------------------------- /doc/olddoc/index-light.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/olddoc/index-light.html -------------------------------------------------------------------------------- /doc/olddoc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/olddoc/index.html -------------------------------------------------------------------------------- /doc/olddoc/math.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/olddoc/math.html -------------------------------------------------------------------------------- /doc/olddoc/model/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/olddoc/model/index.html -------------------------------------------------------------------------------- /doc/olddoc/osiris/comm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/olddoc/osiris/comm.html -------------------------------------------------------------------------------- /doc/olddoc/osiris/dump.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/olddoc/osiris/dump.html -------------------------------------------------------------------------------- /doc/olddoc/osiris/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/olddoc/osiris/index.html -------------------------------------------------------------------------------- /doc/olddoc/osiris/os.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/olddoc/osiris/os.html -------------------------------------------------------------------------------- /doc/olddoc/parameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/olddoc/parameters.html -------------------------------------------------------------------------------- /doc/olddoc/parser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/olddoc/parser/index.html -------------------------------------------------------------------------------- /doc/olddoc/random.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/olddoc/random.html -------------------------------------------------------------------------------- /doc/olddoc/setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/olddoc/setup.html -------------------------------------------------------------------------------- /doc/olddoc/stringvalue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/olddoc/stringvalue.html -------------------------------------------------------------------------------- /doc/olddoc/tool/archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/olddoc/tool/archive.html -------------------------------------------------------------------------------- /doc/olddoc/tool/browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/olddoc/tool/browse.png -------------------------------------------------------------------------------- /doc/olddoc/tool/extract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/olddoc/tool/extract.png -------------------------------------------------------------------------------- /doc/olddoc/tool/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/olddoc/tool/index.html -------------------------------------------------------------------------------- /doc/olddoc/tool/plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/olddoc/tool/plot.png -------------------------------------------------------------------------------- /doc/olddoc/typetraits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/olddoc/typetraits.html -------------------------------------------------------------------------------- /doc/olddoc/vectormath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/olddoc/vectormath.html -------------------------------------------------------------------------------- /doc/olddoc/vectortraits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/olddoc/vectortraits.html -------------------------------------------------------------------------------- /doc/papers/alps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/papers/alps/Makefile -------------------------------------------------------------------------------- /doc/papers/alps/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/papers/alps/README.txt -------------------------------------------------------------------------------- /doc/papers/alps/alps20.bbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/papers/alps/alps20.bbl -------------------------------------------------------------------------------- /doc/papers/alps/alps20.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/papers/alps/alps20.pdf -------------------------------------------------------------------------------- /doc/papers/alps/alps20.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/papers/alps/alps20.tex -------------------------------------------------------------------------------- /doc/papers/alps/iopams.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/papers/alps/iopams.sty -------------------------------------------------------------------------------- /doc/papers/alps/iopart.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/papers/alps/iopart.cls -------------------------------------------------------------------------------- /doc/papers/alps/iopart10.clo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/papers/alps/iopart10.clo -------------------------------------------------------------------------------- /doc/papers/alps/iopart12.clo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/papers/alps/iopart12.clo -------------------------------------------------------------------------------- /doc/papers/alps/refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/papers/alps/refs.bib -------------------------------------------------------------------------------- /doc/papers/dmft/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/papers/dmft/Makefile -------------------------------------------------------------------------------- /doc/papers/dmft/codes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/papers/dmft/codes.pdf -------------------------------------------------------------------------------- /doc/papers/dmft/codes.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/papers/dmft/codes.tex -------------------------------------------------------------------------------- /doc/papers/dmft/green.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/papers/dmft/green.eps -------------------------------------------------------------------------------- /doc/papers/dmft/loop.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/papers/dmft/loop.eps -------------------------------------------------------------------------------- /doc/papers/dmft/loop.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/papers/dmft/loop.tex -------------------------------------------------------------------------------- /doc/papers/dmft/param_hyb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/papers/dmft/param_hyb -------------------------------------------------------------------------------- /doc/papers/dmft/param_int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/papers/dmft/param_int -------------------------------------------------------------------------------- /doc/papers/dmft/refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/papers/dmft/refs.bib -------------------------------------------------------------------------------- /doc/papers/dmft/se.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/papers/dmft/se.eps -------------------------------------------------------------------------------- /doc/papers/dmft/se.xmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/papers/dmft/se.xmgr -------------------------------------------------------------------------------- /doc/papers/dmft/sigma.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/papers/dmft/sigma.eps -------------------------------------------------------------------------------- /doc/papers/dmft/strip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/papers/dmft/strip.py -------------------------------------------------------------------------------- /doc/singledoc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/singledoc.in -------------------------------------------------------------------------------- /doc/sphinx/HOWTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/sphinx/HOWTO -------------------------------------------------------------------------------- /doc/sphinx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/sphinx/Makefile -------------------------------------------------------------------------------- /doc/sphinx/alea.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/sphinx/alea.txt -------------------------------------------------------------------------------- /doc/sphinx/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/sphinx/conf.py -------------------------------------------------------------------------------- /doc/sphinx/dataset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/sphinx/dataset.txt -------------------------------------------------------------------------------- /doc/sphinx/fit_wrapper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/sphinx/fit_wrapper.txt -------------------------------------------------------------------------------- /doc/sphinx/hdf5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/sphinx/hdf5.txt -------------------------------------------------------------------------------- /doc/sphinx/hlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/sphinx/hlist.txt -------------------------------------------------------------------------------- /doc/sphinx/load.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/sphinx/load.txt -------------------------------------------------------------------------------- /doc/sphinx/math.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/sphinx/math.txt -------------------------------------------------------------------------------- /doc/sphinx/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/sphinx/modules.txt -------------------------------------------------------------------------------- /doc/sphinx/plot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/sphinx/plot.txt -------------------------------------------------------------------------------- /doc/sphinx/plot_core.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/sphinx/plot_core.txt -------------------------------------------------------------------------------- /doc/sphinx/pyalps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/sphinx/pyalps.txt -------------------------------------------------------------------------------- /doc/sphinx/pytools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/sphinx/pytools.txt -------------------------------------------------------------------------------- /doc/sphinx/tools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/sphinx/tools.txt -------------------------------------------------------------------------------- /doc/src/alea.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/src/alea.qbk -------------------------------------------------------------------------------- /doc/src/alps.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/src/alps.qbk -------------------------------------------------------------------------------- /doc/src/alps_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/src/alps_logo.gif -------------------------------------------------------------------------------- /doc/src/general.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/src/general.qbk -------------------------------------------------------------------------------- /doc/src/hdf5.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/src/hdf5.qbk -------------------------------------------------------------------------------- /doc/src/ietl.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/src/ietl.qbk -------------------------------------------------------------------------------- /doc/src/ietl.qbk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/src/ietl.qbk.in -------------------------------------------------------------------------------- /doc/src/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/src/images/home.png -------------------------------------------------------------------------------- /doc/src/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/src/images/next.png -------------------------------------------------------------------------------- /doc/src/images/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/src/images/note.png -------------------------------------------------------------------------------- /doc/src/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/src/images/prev.png -------------------------------------------------------------------------------- /doc/src/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/src/images/up.png -------------------------------------------------------------------------------- /doc/src/lattice.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/src/lattice.qbk -------------------------------------------------------------------------------- /doc/src/model.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/src/model.qbk -------------------------------------------------------------------------------- /doc/src/osiris.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/src/osiris.qbk -------------------------------------------------------------------------------- /doc/src/overview.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/src/overview.qbk -------------------------------------------------------------------------------- /doc/src/parser.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/src/parser.qbk -------------------------------------------------------------------------------- /doc/src/random.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/src/random.qbk -------------------------------------------------------------------------------- /doc/src/scheduler.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/src/scheduler.qbk -------------------------------------------------------------------------------- /doc/src/tools.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/src/tools.qbk -------------------------------------------------------------------------------- /doc/xsl/html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/xsl/html.xsl -------------------------------------------------------------------------------- /doc/xsl/navbar.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/doc/xsl/navbar.xsl -------------------------------------------------------------------------------- /docs/API/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/docs/API/introduction.rst -------------------------------------------------------------------------------- /docs/API/ngs/hash.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/docs/API/ngs/hash.rst -------------------------------------------------------------------------------- /docs/API/ngs/scheduler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/docs/API/ngs/scheduler.rst -------------------------------------------------------------------------------- /docs/API/ngs/signals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/docs/API/ngs/signals.rst -------------------------------------------------------------------------------- /docs/APIP/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/docs/APIP/introduction.rst -------------------------------------------------------------------------------- /docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/docs/CMakeLists.txt -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/docs/README.rst -------------------------------------------------------------------------------- /docs/_static/alps_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/docs/_static/alps_logo.png -------------------------------------------------------------------------------- /docs/_static/alps_side.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/docs/_static/alps_side.gif -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/conf.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/docs/conf.py.in -------------------------------------------------------------------------------- /docs/doxygen.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/docs/doxygen.conf.in -------------------------------------------------------------------------------- /docs/ext/breathe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/docs/ext/breathe/__init__.py -------------------------------------------------------------------------------- /docs/ext/breathe/parser/doxygen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/ext/breathe/renderer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/ext/breathe/renderer/rst/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /docs/ext/gasp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/docs/ext/gasp/__init__.py -------------------------------------------------------------------------------- /docs/ext/gasp/concept.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/docs/ext/gasp/concept.py -------------------------------------------------------------------------------- /docs/ext/gasp/doxtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/docs/ext/gasp/doxtools.py -------------------------------------------------------------------------------- /docs/ext/gasp/doxygen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/docs/ext/gasp/doxygen.py -------------------------------------------------------------------------------- /docs/ext/viewcode_patched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/docs/ext/viewcode_patched.py -------------------------------------------------------------------------------- /docs/get_gasp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/docs/get_gasp.in -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/license/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/docs/license/license.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/docs/tutorials/index.rst -------------------------------------------------------------------------------- /docs/userguide/tutorials: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/docs/userguide/tutorials -------------------------------------------------------------------------------- /example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/CMakeLists.txt -------------------------------------------------------------------------------- /example/alea/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/alea/CMakeLists.txt -------------------------------------------------------------------------------- /example/alea/example_mean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/alea/example_mean.py -------------------------------------------------------------------------------- /example/alea/testfile.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/alea/testfile.h5 -------------------------------------------------------------------------------- /example/fortran/hello/main.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/fortran/hello/main.C -------------------------------------------------------------------------------- /example/fortran/ising/main.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/fortran/ising/main.C -------------------------------------------------------------------------------- /example/hdf5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/hdf5/CMakeLists.txt -------------------------------------------------------------------------------- /example/ietl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/ietl/CMakeLists.txt -------------------------------------------------------------------------------- /example/ietl/arnoldi1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/ietl/arnoldi1.h -------------------------------------------------------------------------------- /example/ietl/jacobi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/ietl/jacobi.cpp -------------------------------------------------------------------------------- /example/ietl/lanczos1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/ietl/lanczos1.cpp -------------------------------------------------------------------------------- /example/ietl/lanczos2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/ietl/lanczos2.cpp -------------------------------------------------------------------------------- /example/ietl/lanczos3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/ietl/lanczos3.cpp -------------------------------------------------------------------------------- /example/ietl/lanczos4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/ietl/lanczos4.cpp -------------------------------------------------------------------------------- /example/ietl/lanczos5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/ietl/lanczos5.cpp -------------------------------------------------------------------------------- /example/ietl/power1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/ietl/power1.cpp -------------------------------------------------------------------------------- /example/ietl/power2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/ietl/power2.cpp -------------------------------------------------------------------------------- /example/ietl/solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/ietl/solver.h -------------------------------------------------------------------------------- /example/model/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/model/CMakeLists.txt -------------------------------------------------------------------------------- /example/model/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/model/matrix.h -------------------------------------------------------------------------------- /example/ngs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/ngs/CMakeLists.txt -------------------------------------------------------------------------------- /example/parapack/loop/loop.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/parapack/loop/loop.C -------------------------------------------------------------------------------- /example/parapack/loop/loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/parapack/loop/loop.h -------------------------------------------------------------------------------- /example/parapack/loop/main.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/parapack/loop/main.C -------------------------------------------------------------------------------- /example/parapack/loop/params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/parapack/loop/params -------------------------------------------------------------------------------- /example/sampling/fleas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/sampling/fleas.h -------------------------------------------------------------------------------- /example/scheduler/evaluate.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/scheduler/evaluate.C -------------------------------------------------------------------------------- /example/scheduler/ising.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/scheduler/ising.C -------------------------------------------------------------------------------- /example/scheduler/ising.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/scheduler/ising.h -------------------------------------------------------------------------------- /example/scheduler/ising2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/scheduler/ising2.C -------------------------------------------------------------------------------- /example/scheduler/ising2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/scheduler/ising2.h -------------------------------------------------------------------------------- /example/scheduler/main.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/scheduler/main.C -------------------------------------------------------------------------------- /example/scheduler/main2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/scheduler/main2.C -------------------------------------------------------------------------------- /example/scheduler/main3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/scheduler/main3.C -------------------------------------------------------------------------------- /example/scheduler/parm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/scheduler/parm -------------------------------------------------------------------------------- /example/scheduler/parm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/scheduler/parm2 -------------------------------------------------------------------------------- /example/scheduler/parm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/example/scheduler/parm3 -------------------------------------------------------------------------------- /legacy/alps/copyright.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/legacy/alps/copyright.h -------------------------------------------------------------------------------- /legacy/alps/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/legacy/alps/math.hpp -------------------------------------------------------------------------------- /legacy/alps/osiris/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/legacy/alps/osiris/os.h -------------------------------------------------------------------------------- /legacy/alps/vectorio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/legacy/alps/vectorio.h -------------------------------------------------------------------------------- /lib/mpi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/mpi.py -------------------------------------------------------------------------------- /lib/pyalps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/pyalps/CMakeLists.txt -------------------------------------------------------------------------------- /lib/pyalps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/pyalps/__init__.py -------------------------------------------------------------------------------- /lib/pyalps/alea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/pyalps/alea.py -------------------------------------------------------------------------------- /lib/pyalps/alea_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/pyalps/alea_detail.py -------------------------------------------------------------------------------- /lib/pyalps/apptest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/pyalps/apptest.py -------------------------------------------------------------------------------- /lib/pyalps/cxx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/pyalps/cxx.py -------------------------------------------------------------------------------- /lib/pyalps/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/pyalps/dataset.py -------------------------------------------------------------------------------- /lib/pyalps/dict_intersect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/pyalps/dict_intersect.py -------------------------------------------------------------------------------- /lib/pyalps/dwa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/pyalps/dwa.py -------------------------------------------------------------------------------- /lib/pyalps/fit_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/pyalps/fit_wrapper.py -------------------------------------------------------------------------------- /lib/pyalps/floatwitherror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/pyalps/floatwitherror.py -------------------------------------------------------------------------------- /lib/pyalps/hdf5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/pyalps/hdf5.py -------------------------------------------------------------------------------- /lib/pyalps/hlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/pyalps/hlist.py -------------------------------------------------------------------------------- /lib/pyalps/lattice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/pyalps/lattice.py -------------------------------------------------------------------------------- /lib/pyalps/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/pyalps/load.py -------------------------------------------------------------------------------- /lib/pyalps/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/pyalps/math.py -------------------------------------------------------------------------------- /lib/pyalps/maxent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/pyalps/maxent.py -------------------------------------------------------------------------------- /lib/pyalps/mpi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/pyalps/mpi.py -------------------------------------------------------------------------------- /lib/pyalps/mpl_setup_qt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/pyalps/mpl_setup_qt.py -------------------------------------------------------------------------------- /lib/pyalps/mpl_setup_tk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/pyalps/mpl_setup_tk.py -------------------------------------------------------------------------------- /lib/pyalps/natural_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/pyalps/natural_sort.py -------------------------------------------------------------------------------- /lib/pyalps/ngs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/pyalps/ngs.py -------------------------------------------------------------------------------- /lib/pyalps/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/pyalps/plot.py -------------------------------------------------------------------------------- /lib/pyalps/plot_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/pyalps/plot_core.py -------------------------------------------------------------------------------- /lib/pyalps/pyalps_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/pyalps/pyalps_config.py -------------------------------------------------------------------------------- /lib/pyalps/pytools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/pyalps/pytools.py -------------------------------------------------------------------------------- /lib/pyalps/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/pyalps/tools.py -------------------------------------------------------------------------------- /lib/xml/ALPS.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/xml/ALPS.xsl -------------------------------------------------------------------------------- /lib/xml/QMCXML2text.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/xml/QMCXML2text.xsl -------------------------------------------------------------------------------- /lib/xml/archive2plot.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/xml/archive2plot.xsl -------------------------------------------------------------------------------- /lib/xml/changestylesheet.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/xml/changestylesheet.xsl -------------------------------------------------------------------------------- /lib/xml/helpers.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/xml/helpers.xsl -------------------------------------------------------------------------------- /lib/xml/lattices.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/xml/lattices.xml.in -------------------------------------------------------------------------------- /lib/xml/models.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/xml/models.xml.in -------------------------------------------------------------------------------- /lib/xml/plot2gp.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/xml/plot2gp.xsl -------------------------------------------------------------------------------- /lib/xml/plot2mpl.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/xml/plot2mpl.xsl -------------------------------------------------------------------------------- /lib/xml/plot2text.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/xml/plot2text.xsl -------------------------------------------------------------------------------- /lib/xml/plot2xmgr.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/xml/plot2xmgr.xsl -------------------------------------------------------------------------------- /lib/xml/plot2xsl.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/lib/xml/plot2xsl.xsl -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy<2.1 2 | scipy -------------------------------------------------------------------------------- /script/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/script/CMakeLists.txt -------------------------------------------------------------------------------- /script/cmake28.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/script/cmake28.sh -------------------------------------------------------------------------------- /script/cmake3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/script/cmake3.sh -------------------------------------------------------------------------------- /script/compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/script/compile.py -------------------------------------------------------------------------------- /script/download-docbook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/script/download-docbook.sh -------------------------------------------------------------------------------- /script/end_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/script/end_check.cpp -------------------------------------------------------------------------------- /script/gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/script/gcc.sh -------------------------------------------------------------------------------- /script/gcc44.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/script/gcc44.sh -------------------------------------------------------------------------------- /script/hdf5-nofortran.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/script/hdf5-nofortran.sh -------------------------------------------------------------------------------- /script/hdf5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/script/hdf5.sh -------------------------------------------------------------------------------- /script/inspect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/script/inspect.cpp -------------------------------------------------------------------------------- /script/license_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/script/license_check.cpp -------------------------------------------------------------------------------- /script/linecount.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/script/linecount.sh -------------------------------------------------------------------------------- /script/lpsolve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/script/lpsolve.sh -------------------------------------------------------------------------------- /script/openmpi-nofortran.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/script/openmpi-nofortran.sh -------------------------------------------------------------------------------- /script/openmpi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/script/openmpi.sh -------------------------------------------------------------------------------- /script/openmpi1.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/script/openmpi1.6.sh -------------------------------------------------------------------------------- /script/path_name_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/script/path_name_check.cpp -------------------------------------------------------------------------------- /script/prepare_deplibs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/script/prepare_deplibs.bat -------------------------------------------------------------------------------- /script/prepare_deplibs64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/script/prepare_deplibs64.bat -------------------------------------------------------------------------------- /script/tab_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/script/tab_check.cpp -------------------------------------------------------------------------------- /script/test_libs_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/script/test_libs_mac.sh -------------------------------------------------------------------------------- /script/upload_alps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/script/upload_alps.sh -------------------------------------------------------------------------------- /src/alps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/CMakeLists.txt -------------------------------------------------------------------------------- /src/alps/alea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/alea.h -------------------------------------------------------------------------------- /src/alps/alea/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/alea/histogram.h -------------------------------------------------------------------------------- /src/alps/alea/mcanalyze.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/alea/mcanalyze.hpp -------------------------------------------------------------------------------- /src/alps/alea/mcdata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/alea/mcdata.hpp -------------------------------------------------------------------------------- /src/alps/alea/nan.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/alea/nan.C -------------------------------------------------------------------------------- /src/alps/alea/nan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/alea/nan.h -------------------------------------------------------------------------------- /src/alps/alea/nobinning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/alea/nobinning.h -------------------------------------------------------------------------------- /src/alps/alea/observable.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/alea/observable.C -------------------------------------------------------------------------------- /src/alps/alea/observable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/alea/observable.h -------------------------------------------------------------------------------- /src/alps/alea/type_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/alea/type_tag.hpp -------------------------------------------------------------------------------- /src/alps/cctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/cctype.h -------------------------------------------------------------------------------- /src/alps/check_schedule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/check_schedule.hpp -------------------------------------------------------------------------------- /src/alps/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/config.h.in -------------------------------------------------------------------------------- /src/alps/expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/expression.h -------------------------------------------------------------------------------- /src/alps/expression/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/expression/block.h -------------------------------------------------------------------------------- /src/alps/expression/factor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/expression/factor.h -------------------------------------------------------------------------------- /src/alps/expression/number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/expression/number.h -------------------------------------------------------------------------------- /src/alps/expression/symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/expression/symbol.h -------------------------------------------------------------------------------- /src/alps/expression/term.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/expression/term.h -------------------------------------------------------------------------------- /src/alps/expression/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/expression/traits.h -------------------------------------------------------------------------------- /src/alps/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/factory.h -------------------------------------------------------------------------------- /src/alps/functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/functional.h -------------------------------------------------------------------------------- /src/alps/graph/subgraphs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/graph/subgraphs.hpp -------------------------------------------------------------------------------- /src/alps/graph/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/graph/utils.hpp -------------------------------------------------------------------------------- /src/alps/hdf5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/hdf5.hpp -------------------------------------------------------------------------------- /src/alps/hdf5/archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/hdf5/archive.cpp -------------------------------------------------------------------------------- /src/alps/hdf5/archive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/hdf5/archive.hpp -------------------------------------------------------------------------------- /src/alps/hdf5/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/hdf5/array.hpp -------------------------------------------------------------------------------- /src/alps/hdf5/complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/hdf5/complex.hpp -------------------------------------------------------------------------------- /src/alps/hdf5/errors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/hdf5/errors.hpp -------------------------------------------------------------------------------- /src/alps/hdf5/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/hdf5/map.hpp -------------------------------------------------------------------------------- /src/alps/hdf5/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/hdf5/matrix.hpp -------------------------------------------------------------------------------- /src/alps/hdf5/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/hdf5/pair.hpp -------------------------------------------------------------------------------- /src/alps/hdf5/pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/hdf5/pointer.hpp -------------------------------------------------------------------------------- /src/alps/hdf5/python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/hdf5/python.cpp -------------------------------------------------------------------------------- /src/alps/hdf5/python.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/hdf5/python.hpp -------------------------------------------------------------------------------- /src/alps/hdf5/stdarray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/hdf5/stdarray.hpp -------------------------------------------------------------------------------- /src/alps/hdf5/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/hdf5/tuple.hpp -------------------------------------------------------------------------------- /src/alps/hdf5/valarray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/hdf5/valarray.hpp -------------------------------------------------------------------------------- /src/alps/hdf5/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/hdf5/vector.hpp -------------------------------------------------------------------------------- /src/alps/lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/lambda.hpp -------------------------------------------------------------------------------- /src/alps/lattice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/lattice.h -------------------------------------------------------------------------------- /src/alps/lattice/boundary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/lattice/boundary.h -------------------------------------------------------------------------------- /src/alps/lattice/disorder.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/lattice/disorder.C -------------------------------------------------------------------------------- /src/alps/lattice/disorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/lattice/disorder.h -------------------------------------------------------------------------------- /src/alps/lattice/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/lattice/graph.h -------------------------------------------------------------------------------- /src/alps/lattice/lattice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/lattice/lattice.h -------------------------------------------------------------------------------- /src/alps/lattice/parity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/lattice/parity.h -------------------------------------------------------------------------------- /src/alps/lattice/unitcell.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/lattice/unitcell.C -------------------------------------------------------------------------------- /src/alps/lattice/unitcell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/lattice/unitcell.h -------------------------------------------------------------------------------- /src/alps/mcbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/mcbase.cpp -------------------------------------------------------------------------------- /src/alps/mcbase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/mcbase.hpp -------------------------------------------------------------------------------- /src/alps/mcmpiadapter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/mcmpiadapter.hpp -------------------------------------------------------------------------------- /src/alps/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/model.h -------------------------------------------------------------------------------- /src/alps/model/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/model/TODO.txt -------------------------------------------------------------------------------- /src/alps/model/basisstates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/model/basisstates.h -------------------------------------------------------------------------------- /src/alps/model/bondterm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/model/bondterm.C -------------------------------------------------------------------------------- /src/alps/model/bondterm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/model/bondterm.h -------------------------------------------------------------------------------- /src/alps/model/hamiltonian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/model/hamiltonian.h -------------------------------------------------------------------------------- /src/alps/model/ideas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/model/ideas.xml -------------------------------------------------------------------------------- /src/alps/model/operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/model/operator.h -------------------------------------------------------------------------------- /src/alps/model/sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/model/sign.h -------------------------------------------------------------------------------- /src/alps/model/sitestate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/model/sitestate.h -------------------------------------------------------------------------------- /src/alps/model/siteterm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/model/siteterm.C -------------------------------------------------------------------------------- /src/alps/model/siteterm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/model/siteterm.h -------------------------------------------------------------------------------- /src/alps/model/substitute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/model/substitute.h -------------------------------------------------------------------------------- /src/alps/multi_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/multi_array.hpp -------------------------------------------------------------------------------- /src/alps/multi_array/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/multi_array/io.hpp -------------------------------------------------------------------------------- /src/alps/ngs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs.hpp -------------------------------------------------------------------------------- /src/alps/ngs/accumulator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/accumulator.hpp -------------------------------------------------------------------------------- /src/alps/ngs/api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/api.hpp -------------------------------------------------------------------------------- /src/alps/ngs/boost_mpi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/boost_mpi.hpp -------------------------------------------------------------------------------- /src/alps/ngs/cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/cast.hpp -------------------------------------------------------------------------------- /src/alps/ngs/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/config.hpp -------------------------------------------------------------------------------- /src/alps/ngs/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/hash.hpp -------------------------------------------------------------------------------- /src/alps/ngs/lib/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/lib/api.cpp -------------------------------------------------------------------------------- /src/alps/ngs/lib/clone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/lib/clone.cpp -------------------------------------------------------------------------------- /src/alps/ngs/lib/job.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/lib/job.cpp -------------------------------------------------------------------------------- /src/alps/ngs/lib/params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/lib/params.cpp -------------------------------------------------------------------------------- /src/alps/ngs/lib/signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/lib/signal.cpp -------------------------------------------------------------------------------- /src/alps/ngs/lib/sleep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/lib/sleep.cpp -------------------------------------------------------------------------------- /src/alps/ngs/lib/ulfm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/lib/ulfm.cpp -------------------------------------------------------------------------------- /src/alps/ngs/mcoptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/mcoptions.hpp -------------------------------------------------------------------------------- /src/alps/ngs/mcresult.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/mcresult.hpp -------------------------------------------------------------------------------- /src/alps/ngs/mcresults.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/mcresults.hpp -------------------------------------------------------------------------------- /src/alps/ngs/mpi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/mpi.hpp -------------------------------------------------------------------------------- /src/alps/ngs/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/mutex.hpp -------------------------------------------------------------------------------- /src/alps/ngs/numeric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/numeric.hpp -------------------------------------------------------------------------------- /src/alps/ngs/numeric/inf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/numeric/inf.hpp -------------------------------------------------------------------------------- /src/alps/ngs/params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/params.hpp -------------------------------------------------------------------------------- /src/alps/ngs/parapack/job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/parapack/job.h -------------------------------------------------------------------------------- /src/alps/ngs/python/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/python/api.cpp -------------------------------------------------------------------------------- /src/alps/ngs/python/hdf5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/python/hdf5.cpp -------------------------------------------------------------------------------- /src/alps/ngs/random01.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/random01.hpp -------------------------------------------------------------------------------- /src/alps/ngs/result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/result.hpp -------------------------------------------------------------------------------- /src/alps/ngs/short_print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/short_print.hpp -------------------------------------------------------------------------------- /src/alps/ngs/signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/signal.hpp -------------------------------------------------------------------------------- /src/alps/ngs/sleep.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/sleep.hpp -------------------------------------------------------------------------------- /src/alps/ngs/stacktrace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/stacktrace.hpp -------------------------------------------------------------------------------- /src/alps/ngs/stringify.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/stringify.hpp -------------------------------------------------------------------------------- /src/alps/ngs/ulfm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/ngs/ulfm.hpp -------------------------------------------------------------------------------- /src/alps/numeric/abs2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/numeric/abs2.hpp -------------------------------------------------------------------------------- /src/alps/numeric/conj.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/numeric/conj.hpp -------------------------------------------------------------------------------- /src/alps/numeric/fourier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/numeric/fourier.hpp -------------------------------------------------------------------------------- /src/alps/numeric/imag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/numeric/imag.hpp -------------------------------------------------------------------------------- /src/alps/numeric/is_zero.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/numeric/is_zero.hpp -------------------------------------------------------------------------------- /src/alps/numeric/isinf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/numeric/isinf.hpp -------------------------------------------------------------------------------- /src/alps/numeric/isnan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/numeric/isnan.hpp -------------------------------------------------------------------------------- /src/alps/numeric/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/numeric/matrix.hpp -------------------------------------------------------------------------------- /src/alps/numeric/real.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/numeric/real.hpp -------------------------------------------------------------------------------- /src/alps/numeric/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/numeric/round.hpp -------------------------------------------------------------------------------- /src/alps/osiris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris.h -------------------------------------------------------------------------------- /src/alps/osiris/buffer.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/buffer.C -------------------------------------------------------------------------------- /src/alps/osiris/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/buffer.h -------------------------------------------------------------------------------- /src/alps/osiris/comm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/comm.C -------------------------------------------------------------------------------- /src/alps/osiris/comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/comm.h -------------------------------------------------------------------------------- /src/alps/osiris/dump.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/dump.C -------------------------------------------------------------------------------- /src/alps/osiris/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/dump.h -------------------------------------------------------------------------------- /src/alps/osiris/mpdump.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/mpdump.C -------------------------------------------------------------------------------- /src/alps/osiris/mpdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/mpdump.h -------------------------------------------------------------------------------- /src/alps/osiris/process.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/process.C -------------------------------------------------------------------------------- /src/alps/osiris/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/process.h -------------------------------------------------------------------------------- /src/alps/osiris/rpc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/rpc_types.h -------------------------------------------------------------------------------- /src/alps/osiris/std/deque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/std/deque.h -------------------------------------------------------------------------------- /src/alps/osiris/std/impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/std/impl.h -------------------------------------------------------------------------------- /src/alps/osiris/std/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/std/list.h -------------------------------------------------------------------------------- /src/alps/osiris/std/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/std/map.h -------------------------------------------------------------------------------- /src/alps/osiris/std/pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/std/pair.h -------------------------------------------------------------------------------- /src/alps/osiris/std/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/std/set.h -------------------------------------------------------------------------------- /src/alps/osiris/std/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/std/stack.h -------------------------------------------------------------------------------- /src/alps/osiris/std/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/std/string.h -------------------------------------------------------------------------------- /src/alps/osiris/std/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/std/vector.h -------------------------------------------------------------------------------- /src/alps/osiris/xdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/xdr.c -------------------------------------------------------------------------------- /src/alps/osiris/xdr_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/xdr_array.c -------------------------------------------------------------------------------- /src/alps/osiris/xdr_float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/xdr_float.c -------------------------------------------------------------------------------- /src/alps/osiris/xdr_stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/xdr_stdio.c -------------------------------------------------------------------------------- /src/alps/osiris/xdrcore.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/xdrcore.C -------------------------------------------------------------------------------- /src/alps/osiris/xdrcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/xdrcore.h -------------------------------------------------------------------------------- /src/alps/osiris/xdrdump.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/xdrdump.C -------------------------------------------------------------------------------- /src/alps/osiris/xdrdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/osiris/xdrdump.h -------------------------------------------------------------------------------- /src/alps/parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parameter.h -------------------------------------------------------------------------------- /src/alps/parapack/clone.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parapack/clone.C -------------------------------------------------------------------------------- /src/alps/parapack/clone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parapack/clone.h -------------------------------------------------------------------------------- /src/alps/parapack/exchange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parapack/exchange.h -------------------------------------------------------------------------------- /src/alps/parapack/filelock.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parapack/filelock.C -------------------------------------------------------------------------------- /src/alps/parapack/filelock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parapack/filelock.h -------------------------------------------------------------------------------- /src/alps/parapack/job.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parapack/job.C -------------------------------------------------------------------------------- /src/alps/parapack/job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parapack/job.h -------------------------------------------------------------------------------- /src/alps/parapack/job_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parapack/job_p.h -------------------------------------------------------------------------------- /src/alps/parapack/logger.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parapack/logger.C -------------------------------------------------------------------------------- /src/alps/parapack/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parapack/logger.h -------------------------------------------------------------------------------- /src/alps/parapack/option.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parapack/option.C -------------------------------------------------------------------------------- /src/alps/parapack/option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parapack/option.h -------------------------------------------------------------------------------- /src/alps/parapack/parapack.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parapack/parapack.C -------------------------------------------------------------------------------- /src/alps/parapack/parapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parapack/parapack.h -------------------------------------------------------------------------------- /src/alps/parapack/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parapack/process.h -------------------------------------------------------------------------------- /src/alps/parapack/queue.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parapack/queue.C -------------------------------------------------------------------------------- /src/alps/parapack/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parapack/queue.h -------------------------------------------------------------------------------- /src/alps/parapack/staging.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parapack/staging.C -------------------------------------------------------------------------------- /src/alps/parapack/staging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parapack/staging.h -------------------------------------------------------------------------------- /src/alps/parapack/types.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parapack/types.C -------------------------------------------------------------------------------- /src/alps/parapack/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parapack/types.h -------------------------------------------------------------------------------- /src/alps/parapack/util.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parapack/util.C -------------------------------------------------------------------------------- /src/alps/parapack/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parapack/util.h -------------------------------------------------------------------------------- /src/alps/parapack/version.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parapack/version.C -------------------------------------------------------------------------------- /src/alps/parapack/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parapack/version.h -------------------------------------------------------------------------------- /src/alps/parapack/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parapack/worker.h -------------------------------------------------------------------------------- /src/alps/parseargs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parseargs.cpp -------------------------------------------------------------------------------- /src/alps/parseargs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parseargs.hpp -------------------------------------------------------------------------------- /src/alps/parser/parser.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parser/parser.C -------------------------------------------------------------------------------- /src/alps/parser/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parser/parser.h -------------------------------------------------------------------------------- /src/alps/parser/xmlhandler.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parser/xmlhandler.C -------------------------------------------------------------------------------- /src/alps/parser/xmlhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parser/xmlhandler.h -------------------------------------------------------------------------------- /src/alps/parser/xmlparser.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parser/xmlparser.C -------------------------------------------------------------------------------- /src/alps/parser/xmlparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parser/xmlparser.h -------------------------------------------------------------------------------- /src/alps/parser/xmlstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parser/xmlstream.C -------------------------------------------------------------------------------- /src/alps/parser/xmlstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parser/xmlstream.h -------------------------------------------------------------------------------- /src/alps/parser/xslt_path.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parser/xslt_path.C -------------------------------------------------------------------------------- /src/alps/parser/xslt_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/parser/xslt_path.h -------------------------------------------------------------------------------- /src/alps/plot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/plot.h -------------------------------------------------------------------------------- /src/alps/python/pyalea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/python/pyalea.cpp -------------------------------------------------------------------------------- /src/alps/python/pymcdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/python/pymcdata.cpp -------------------------------------------------------------------------------- /src/alps/python/pytools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/python/pytools.cpp -------------------------------------------------------------------------------- /src/alps/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/random.h -------------------------------------------------------------------------------- /src/alps/random/parallel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/random/parallel.hpp -------------------------------------------------------------------------------- /src/alps/random/pseudo_des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/random/pseudo_des.h -------------------------------------------------------------------------------- /src/alps/random/rngfactory.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/random/rngfactory.C -------------------------------------------------------------------------------- /src/alps/random/rngfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/random/rngfactory.h -------------------------------------------------------------------------------- /src/alps/random/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/random/seed.h -------------------------------------------------------------------------------- /src/alps/random/sprng.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/random/sprng.hpp -------------------------------------------------------------------------------- /src/alps/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/scheduler.h -------------------------------------------------------------------------------- /src/alps/scheduler/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/scheduler/convert.h -------------------------------------------------------------------------------- /src/alps/scheduler/diag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/scheduler/diag.hpp -------------------------------------------------------------------------------- /src/alps/scheduler/factory.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/scheduler/factory.C -------------------------------------------------------------------------------- /src/alps/scheduler/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/scheduler/factory.h -------------------------------------------------------------------------------- /src/alps/scheduler/info.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/scheduler/info.C -------------------------------------------------------------------------------- /src/alps/scheduler/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/scheduler/info.h -------------------------------------------------------------------------------- /src/alps/scheduler/options.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/scheduler/options.C -------------------------------------------------------------------------------- /src/alps/scheduler/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/scheduler/options.h -------------------------------------------------------------------------------- /src/alps/scheduler/signal.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/scheduler/signal.C -------------------------------------------------------------------------------- /src/alps/scheduler/task.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/scheduler/task.C -------------------------------------------------------------------------------- /src/alps/scheduler/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/scheduler/task.h -------------------------------------------------------------------------------- /src/alps/scheduler/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/scheduler/types.h -------------------------------------------------------------------------------- /src/alps/scheduler/worker.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/scheduler/worker.C -------------------------------------------------------------------------------- /src/alps/scheduler/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/scheduler/worker.h -------------------------------------------------------------------------------- /src/alps/stop_callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/stop_callback.cpp -------------------------------------------------------------------------------- /src/alps/stop_callback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/stop_callback.hpp -------------------------------------------------------------------------------- /src/alps/stringvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/stringvalue.h -------------------------------------------------------------------------------- /src/alps/utility/assign.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/utility/assign.hpp -------------------------------------------------------------------------------- /src/alps/utility/bitops.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/utility/bitops.hpp -------------------------------------------------------------------------------- /src/alps/utility/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/utility/data.hpp -------------------------------------------------------------------------------- /src/alps/utility/encode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/utility/encode.cpp -------------------------------------------------------------------------------- /src/alps/utility/encode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/utility/encode.hpp -------------------------------------------------------------------------------- /src/alps/utility/factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/utility/factory.hpp -------------------------------------------------------------------------------- /src/alps/utility/os.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/utility/os.cpp -------------------------------------------------------------------------------- /src/alps/utility/os.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/utility/os.hpp -------------------------------------------------------------------------------- /src/alps/utility/resize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/utility/resize.hpp -------------------------------------------------------------------------------- /src/alps/utility/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/utility/size.hpp -------------------------------------------------------------------------------- /src/alps/utility/vmusage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/utility/vmusage.cpp -------------------------------------------------------------------------------- /src/alps/utility/vmusage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/utility/vmusage.hpp -------------------------------------------------------------------------------- /src/alps/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/version.h.in -------------------------------------------------------------------------------- /src/alps/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/alps/xml.h -------------------------------------------------------------------------------- /src/boost/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/boost/CMakeLists.txt -------------------------------------------------------------------------------- /src/boost/classic_spirit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/boost/classic_spirit.hpp -------------------------------------------------------------------------------- /src/boost/mpi/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/boost/mpi/module.cpp -------------------------------------------------------------------------------- /src/boost/throw_exception.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/boost/throw_exception.C -------------------------------------------------------------------------------- /src/ietl/bandlanczos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/ietl/bandlanczos.h -------------------------------------------------------------------------------- /src/ietl/bicgstabl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/ietl/bicgstabl.h -------------------------------------------------------------------------------- /src/ietl/cg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/ietl/cg.h -------------------------------------------------------------------------------- /src/ietl/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/ietl/complex.h -------------------------------------------------------------------------------- /src/ietl/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/ietl/config.h.in -------------------------------------------------------------------------------- /src/ietl/fmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/ietl/fmatrix.h -------------------------------------------------------------------------------- /src/ietl/gmres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/ietl/gmres.h -------------------------------------------------------------------------------- /src/ietl/ietl2lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/ietl/ietl2lapack.h -------------------------------------------------------------------------------- /src/ietl/interface/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/ietl/interface/blas.h -------------------------------------------------------------------------------- /src/ietl/interface/blitz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/ietl/interface/blitz.h -------------------------------------------------------------------------------- /src/ietl/interface/mtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/ietl/interface/mtl.h -------------------------------------------------------------------------------- /src/ietl/interface/ublas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/ietl/interface/ublas.h -------------------------------------------------------------------------------- /src/ietl/inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/ietl/inverse.h -------------------------------------------------------------------------------- /src/ietl/iteration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/ietl/iteration.h -------------------------------------------------------------------------------- /src/ietl/jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/ietl/jacobi.h -------------------------------------------------------------------------------- /src/ietl/jd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/ietl/jd.h -------------------------------------------------------------------------------- /src/ietl/krylov_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/ietl/krylov_wrapper.h -------------------------------------------------------------------------------- /src/ietl/lanczos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/ietl/lanczos.h -------------------------------------------------------------------------------- /src/ietl/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/ietl/matrix.h -------------------------------------------------------------------------------- /src/ietl/power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/ietl/power.h -------------------------------------------------------------------------------- /src/ietl/rayleigh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/ietl/rayleigh.h -------------------------------------------------------------------------------- /src/ietl/simple_arnoldi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/ietl/simple_arnoldi.h -------------------------------------------------------------------------------- /src/ietl/tmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/ietl/tmatrix.h -------------------------------------------------------------------------------- /src/ietl/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/ietl/traits.h -------------------------------------------------------------------------------- /src/ietl/vectorspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/src/ietl/vectorspace.h -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/accumulator/count.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/accumulator/count.cpp -------------------------------------------------------------------------------- /test/accumulator/mean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/accumulator/mean.cpp -------------------------------------------------------------------------------- /test/alea/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/CMakeLists.txt -------------------------------------------------------------------------------- /test/alea/binned_data.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/binned_data.C -------------------------------------------------------------------------------- /test/alea/binned_data.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/binned_data.output -------------------------------------------------------------------------------- /test/alea/detailedbinning.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/detailedbinning.C -------------------------------------------------------------------------------- /test/alea/dumpbench.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/dumpbench.C -------------------------------------------------------------------------------- /test/alea/histogram.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/histogram.C -------------------------------------------------------------------------------- /test/alea/histogram.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/histogram.output -------------------------------------------------------------------------------- /test/alea/histogram2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/histogram2.C -------------------------------------------------------------------------------- /test/alea/mcanalyze.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/mcanalyze.C -------------------------------------------------------------------------------- /test/alea/mcdata.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/mcdata.C -------------------------------------------------------------------------------- /test/alea/mcdata.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/mcdata.output -------------------------------------------------------------------------------- /test/alea/mcdata2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/mcdata2.C -------------------------------------------------------------------------------- /test/alea/mcdata2.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/mcdata2.output -------------------------------------------------------------------------------- /test/alea/mergeobs_divide.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/mergeobs_divide.C -------------------------------------------------------------------------------- /test/alea/mergeobs_divide.op: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/mergeobs_divide.op -------------------------------------------------------------------------------- /test/alea/mergeobs_log.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/mergeobs_log.C -------------------------------------------------------------------------------- /test/alea/mergeobs_log.op: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/mergeobs_log.op -------------------------------------------------------------------------------- /test/alea/mergeobs_plus.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/mergeobs_plus.C -------------------------------------------------------------------------------- /test/alea/mergeobs_plus.op: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/mergeobs_plus.op -------------------------------------------------------------------------------- /test/alea/mergeobs_plus2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/mergeobs_plus2.C -------------------------------------------------------------------------------- /test/alea/mergeobs_plus2.op: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/mergeobs_plus2.op -------------------------------------------------------------------------------- /test/alea/mergeobs_times.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/mergeobs_times.C -------------------------------------------------------------------------------- /test/alea/mergeobs_times.op: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/mergeobs_times.op -------------------------------------------------------------------------------- /test/alea/mergeobs_times2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/mergeobs_times2.C -------------------------------------------------------------------------------- /test/alea/mergeobs_times2.op: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/mergeobs_times2.op -------------------------------------------------------------------------------- /test/alea/signed.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/signed.C -------------------------------------------------------------------------------- /test/alea/signed.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/signed.input -------------------------------------------------------------------------------- /test/alea/signed.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/signed.output -------------------------------------------------------------------------------- /test/alea/simpleobseval.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/simpleobseval.C -------------------------------------------------------------------------------- /test/alea/vectorobseval.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/alea/vectorobseval.C -------------------------------------------------------------------------------- /test/fixed_capacity/test_deque.output: -------------------------------------------------------------------------------- 1 | Test done successfully. 2 | -------------------------------------------------------------------------------- /test/fixed_capacity/test_vector.output: -------------------------------------------------------------------------------- 1 | Test done successfully. 2 | -------------------------------------------------------------------------------- /test/graph/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/graph/CMakeLists.txt -------------------------------------------------------------------------------- /test/graph/iso_simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/graph/iso_simple.cpp -------------------------------------------------------------------------------- /test/graph/orbit_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/graph/orbit_test.cpp -------------------------------------------------------------------------------- /test/graph/orbit_test.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/graph/orbit_test.output -------------------------------------------------------------------------------- /test/graph/utils_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/graph/utils_test.cpp -------------------------------------------------------------------------------- /test/hdf5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/hdf5/CMakeLists.txt -------------------------------------------------------------------------------- /test/hdf5/creator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/hdf5/creator.hpp -------------------------------------------------------------------------------- /test/hdf5/hdf5_bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/hdf5/hdf5_bool.cpp -------------------------------------------------------------------------------- /test/hdf5/hdf5_complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/hdf5/hdf5_complex.cpp -------------------------------------------------------------------------------- /test/hdf5/hdf5_copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/hdf5/hdf5_copy.cpp -------------------------------------------------------------------------------- /test/hdf5/hdf5_family.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/hdf5/hdf5_family.cpp -------------------------------------------------------------------------------- /test/hdf5/hdf5_ising.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/hdf5/hdf5_ising.cpp -------------------------------------------------------------------------------- /test/hdf5/hdf5_large.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/hdf5/hdf5_large.cpp -------------------------------------------------------------------------------- /test/hdf5/hdf5_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/hdf5/hdf5_memory.cpp -------------------------------------------------------------------------------- /test/hdf5/hdf5_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/hdf5/hdf5_misc.cpp -------------------------------------------------------------------------------- /test/hdf5/hdf5_omp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/hdf5/hdf5_omp.cpp -------------------------------------------------------------------------------- /test/hdf5/hdf5_pair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/hdf5/hdf5_pair.cpp -------------------------------------------------------------------------------- /test/hdf5/hdf5_parms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/hdf5/hdf5_parms.cpp -------------------------------------------------------------------------------- /test/hdf5/hdf5_replace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/hdf5/hdf5_replace.cpp -------------------------------------------------------------------------------- /test/hdf5/hdf5_valgrind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/hdf5/hdf5_valgrind.cpp -------------------------------------------------------------------------------- /test/hdf5/hdf5_vecvecdbl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/hdf5/hdf5_vecvecdbl.cpp -------------------------------------------------------------------------------- /test/hdf5/type_check.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/hdf5/type_check.cpp.in -------------------------------------------------------------------------------- /test/lattice/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/CMakeLists.txt -------------------------------------------------------------------------------- /test/lattice/coloring.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/coloring.C -------------------------------------------------------------------------------- /test/lattice/coloring.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/coloring.input -------------------------------------------------------------------------------- /test/lattice/coloring.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/coloring.output -------------------------------------------------------------------------------- /test/lattice/example1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example1.C -------------------------------------------------------------------------------- /test/lattice/example1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example1.output -------------------------------------------------------------------------------- /test/lattice/example10.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example10.C -------------------------------------------------------------------------------- /test/lattice/example10.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example10.input -------------------------------------------------------------------------------- /test/lattice/example11.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example11.C -------------------------------------------------------------------------------- /test/lattice/example11.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example11.input -------------------------------------------------------------------------------- /test/lattice/example2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example2.C -------------------------------------------------------------------------------- /test/lattice/example2.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example2.output -------------------------------------------------------------------------------- /test/lattice/example3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example3.C -------------------------------------------------------------------------------- /test/lattice/example3.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example3.output -------------------------------------------------------------------------------- /test/lattice/example4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example4.C -------------------------------------------------------------------------------- /test/lattice/example4.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example4.input -------------------------------------------------------------------------------- /test/lattice/example4.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example4.output -------------------------------------------------------------------------------- /test/lattice/example5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example5.C -------------------------------------------------------------------------------- /test/lattice/example5.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example5.input -------------------------------------------------------------------------------- /test/lattice/example5.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example5.output -------------------------------------------------------------------------------- /test/lattice/example6.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example6.C -------------------------------------------------------------------------------- /test/lattice/example6.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example6.input -------------------------------------------------------------------------------- /test/lattice/example6.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example6.output -------------------------------------------------------------------------------- /test/lattice/example7.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example7.C -------------------------------------------------------------------------------- /test/lattice/example7.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example7.input -------------------------------------------------------------------------------- /test/lattice/example7.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example7.output -------------------------------------------------------------------------------- /test/lattice/example8.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example8.C -------------------------------------------------------------------------------- /test/lattice/example8.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example8.input -------------------------------------------------------------------------------- /test/lattice/example8.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example8.output -------------------------------------------------------------------------------- /test/lattice/example9.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example9.C -------------------------------------------------------------------------------- /test/lattice/example9.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example9.input -------------------------------------------------------------------------------- /test/lattice/example9.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/example9.output -------------------------------------------------------------------------------- /test/lattice/label.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/label.C -------------------------------------------------------------------------------- /test/lattice/label.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/label.input -------------------------------------------------------------------------------- /test/lattice/label.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/label.output -------------------------------------------------------------------------------- /test/lattice/parameters.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/parameters.in -------------------------------------------------------------------------------- /test/lattice/parity.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/parity.C -------------------------------------------------------------------------------- /test/lattice/parity.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/parity.input -------------------------------------------------------------------------------- /test/lattice/parity.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/lattice/parity.output -------------------------------------------------------------------------------- /test/model/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/CMakeLists.txt -------------------------------------------------------------------------------- /test/model/example1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example1.C -------------------------------------------------------------------------------- /test/model/example1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example1.output -------------------------------------------------------------------------------- /test/model/example10.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example10.C -------------------------------------------------------------------------------- /test/model/example10.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example10.input -------------------------------------------------------------------------------- /test/model/example10.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example10.output -------------------------------------------------------------------------------- /test/model/example11.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example11.C -------------------------------------------------------------------------------- /test/model/example11.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example11.input -------------------------------------------------------------------------------- /test/model/example11.output: -------------------------------------------------------------------------------- 1 | Constraint: Sz=0 2 | -------------------------------------------------------------------------------- /test/model/example12.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example12.C -------------------------------------------------------------------------------- /test/model/example12.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example12.input -------------------------------------------------------------------------------- /test/model/example12.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example12.output -------------------------------------------------------------------------------- /test/model/example13.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example13.C -------------------------------------------------------------------------------- /test/model/example13.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example13.input -------------------------------------------------------------------------------- /test/model/example13.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example13.output -------------------------------------------------------------------------------- /test/model/example14.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example14.C -------------------------------------------------------------------------------- /test/model/example14.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example14.input -------------------------------------------------------------------------------- /test/model/example14.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example14.output -------------------------------------------------------------------------------- /test/model/example15.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example15.C -------------------------------------------------------------------------------- /test/model/example15.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example15.input -------------------------------------------------------------------------------- /test/model/example15.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example15.output -------------------------------------------------------------------------------- /test/model/example16.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example16.C -------------------------------------------------------------------------------- /test/model/example16.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example16.input -------------------------------------------------------------------------------- /test/model/example16.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example16.output -------------------------------------------------------------------------------- /test/model/example17.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example17.C -------------------------------------------------------------------------------- /test/model/example17.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example17.input -------------------------------------------------------------------------------- /test/model/example17.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example17.output -------------------------------------------------------------------------------- /test/model/example18.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example18.C -------------------------------------------------------------------------------- /test/model/example18.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example18.output -------------------------------------------------------------------------------- /test/model/example2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example2.C -------------------------------------------------------------------------------- /test/model/example2.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example2.output -------------------------------------------------------------------------------- /test/model/example3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example3.C -------------------------------------------------------------------------------- /test/model/example3.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example3.output -------------------------------------------------------------------------------- /test/model/example4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example4.C -------------------------------------------------------------------------------- /test/model/example4.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example4.output -------------------------------------------------------------------------------- /test/model/example5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example5.C -------------------------------------------------------------------------------- /test/model/example5.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example5.output -------------------------------------------------------------------------------- /test/model/example6.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example6.C -------------------------------------------------------------------------------- /test/model/example6.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example6.output -------------------------------------------------------------------------------- /test/model/example7.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example7.C -------------------------------------------------------------------------------- /test/model/example7.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example7.output -------------------------------------------------------------------------------- /test/model/example8.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example8.C -------------------------------------------------------------------------------- /test/model/example8.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example8.input -------------------------------------------------------------------------------- /test/model/example8.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example8.output -------------------------------------------------------------------------------- /test/model/example9.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example9.C -------------------------------------------------------------------------------- /test/model/example9.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/example9.output -------------------------------------------------------------------------------- /test/model/parameters.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/model/parameters.in -------------------------------------------------------------------------------- /test/ngs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/ngs/CMakeLists.txt -------------------------------------------------------------------------------- /test/ngs/alea/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/ngs/alea/CMakeLists.txt -------------------------------------------------------------------------------- /test/ngs/ngs_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/ngs/ngs_hash.cpp -------------------------------------------------------------------------------- /test/ngs/ngs_hdf5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/ngs/ngs_hdf5.cpp -------------------------------------------------------------------------------- /test/ngs/params/assign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/ngs/params/assign.cpp -------------------------------------------------------------------------------- /test/ngs/params/default.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/ngs/params/default.cpp -------------------------------------------------------------------------------- /test/ngs/params/ordering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/ngs/params/ordering.cpp -------------------------------------------------------------------------------- /test/ngs/params/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/ngs/params/stream.cpp -------------------------------------------------------------------------------- /test/ngs/params/todo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/ngs/params/todo.cpp -------------------------------------------------------------------------------- /test/numeric/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/numeric/CMakeLists.txt -------------------------------------------------------------------------------- /test/numeric/accumulate_if.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/numeric/accumulate_if.C -------------------------------------------------------------------------------- /test/numeric/matrix_hdf5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/numeric/matrix_hdf5.C -------------------------------------------------------------------------------- /test/numeric/real_tests.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/numeric/real_tests.C -------------------------------------------------------------------------------- /test/osiris/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/osiris/CMakeLists.txt -------------------------------------------------------------------------------- /test/osiris/boostdump.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/osiris/boostdump.C -------------------------------------------------------------------------------- /test/osiris/boostdump.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/osiris/boostdump.output -------------------------------------------------------------------------------- /test/osiris/boostdump2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/osiris/boostdump2.C -------------------------------------------------------------------------------- /test/osiris/boostdump3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/osiris/boostdump3.C -------------------------------------------------------------------------------- /test/osiris/boostdump4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/osiris/boostdump4.C -------------------------------------------------------------------------------- /test/osiris/os.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/osiris/os.C -------------------------------------------------------------------------------- /test/osiris/sizeof.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/osiris/sizeof.C -------------------------------------------------------------------------------- /test/osiris/xdrdump.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/osiris/xdrdump.C -------------------------------------------------------------------------------- /test/osiris/xdrdump.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/osiris/xdrdump.output -------------------------------------------------------------------------------- /test/osiris/xdrdump2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/osiris/xdrdump2.C -------------------------------------------------------------------------------- /test/osiris/xdrdump2.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/osiris/xdrdump2.dump -------------------------------------------------------------------------------- /test/osiris/xdrdump2.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/osiris/xdrdump2.output -------------------------------------------------------------------------------- /test/parameter/expression.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parameter/expression.C -------------------------------------------------------------------------------- /test/parameter/expression2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parameter/expression2.C -------------------------------------------------------------------------------- /test/parameter/flatten.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parameter/flatten.C -------------------------------------------------------------------------------- /test/parameter/flatten.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parameter/flatten.input -------------------------------------------------------------------------------- /test/parameter/parameter.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parameter/parameter.C -------------------------------------------------------------------------------- /test/parameter/parameters.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parameter/parameters.C -------------------------------------------------------------------------------- /test/parameter/parameters_mpi.ip-2: -------------------------------------------------------------------------------- 1 | L=10; 2 | M= 1; 3 | T=0.1; 4 | beta="1/T"; 5 | -------------------------------------------------------------------------------- /test/parapack/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/CMakeLists.txt -------------------------------------------------------------------------------- /test/parapack/clone_info.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/clone_info.C -------------------------------------------------------------------------------- /test/parapack/clone_info.ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/clone_info.ip -------------------------------------------------------------------------------- /test/parapack/clone_info.op: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/clone_info.op -------------------------------------------------------------------------------- /test/parapack/clone_mpi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/clone_mpi.C -------------------------------------------------------------------------------- /test/parapack/clone_mpi.ip-4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/clone_mpi.ip-4 -------------------------------------------------------------------------------- /test/parapack/clone_phase.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/clone_phase.C -------------------------------------------------------------------------------- /test/parapack/clone_phase.ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/clone_phase.ip -------------------------------------------------------------------------------- /test/parapack/clone_phase.op: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/clone_phase.op -------------------------------------------------------------------------------- /test/parapack/clone_timer.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/clone_timer.C -------------------------------------------------------------------------------- /test/parapack/collect_mpi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/collect_mpi.C -------------------------------------------------------------------------------- /test/parapack/collect_mpi.ip-4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/parapack/comm_mpi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/comm_mpi.C -------------------------------------------------------------------------------- /test/parapack/comm_mpi.ip-4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/parapack/exp_number.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/exp_number.C -------------------------------------------------------------------------------- /test/parapack/exp_number.op: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/exp_number.op -------------------------------------------------------------------------------- /test/parapack/filelock_mpi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/filelock_mpi.C -------------------------------------------------------------------------------- /test/parapack/filelock_mpi.ip-4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/parapack/footprint.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/footprint.C -------------------------------------------------------------------------------- /test/parapack/halt_mpi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/halt_mpi.C -------------------------------------------------------------------------------- /test/parapack/id2string.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/id2string.C -------------------------------------------------------------------------------- /test/parapack/id2string.op: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/id2string.op -------------------------------------------------------------------------------- /test/parapack/info_test.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/info_test.C -------------------------------------------------------------------------------- /test/parapack/merge.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/merge.C -------------------------------------------------------------------------------- /test/parapack/merge.op: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/merge.op -------------------------------------------------------------------------------- /test/parapack/percentage.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/percentage.C -------------------------------------------------------------------------------- /test/parapack/percentage.op: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/percentage.op -------------------------------------------------------------------------------- /test/parapack/process_mpi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/process_mpi.C -------------------------------------------------------------------------------- /test/parapack/time.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/time.C -------------------------------------------------------------------------------- /test/parapack/version.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/version.C -------------------------------------------------------------------------------- /test/parapack/wl_weight.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/wl_weight.C -------------------------------------------------------------------------------- /test/parapack/wl_weight.op: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/wl_weight.op -------------------------------------------------------------------------------- /test/parapack/worker_mpi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parapack/worker_mpi.C -------------------------------------------------------------------------------- /test/parser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parser/CMakeLists.txt -------------------------------------------------------------------------------- /test/parser/xmlhandler.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parser/xmlhandler.C -------------------------------------------------------------------------------- /test/parser/xmlhandler.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parser/xmlhandler.input -------------------------------------------------------------------------------- /test/parser/xmlhandler.output: -------------------------------------------------------------------------------- 1 | 3.14159 2 | 2.71828 3 | -------------------------------------------------------------------------------- /test/parser/xmlparser.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parser/xmlparser.C -------------------------------------------------------------------------------- /test/parser/xmlparser.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parser/xmlparser.input -------------------------------------------------------------------------------- /test/parser/xmlparser.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parser/xmlparser.output -------------------------------------------------------------------------------- /test/parser/xmlstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parser/xmlstream.C -------------------------------------------------------------------------------- /test/parser/xmlstream.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/parser/xmlstream.output -------------------------------------------------------------------------------- /test/pyalps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/pyalps/CMakeLists.txt -------------------------------------------------------------------------------- /test/pyalps/accumulators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/pyalps/accumulators.py -------------------------------------------------------------------------------- /test/pyalps/hlist_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/pyalps/hlist_test.py -------------------------------------------------------------------------------- /test/pyalps/loadobs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/pyalps/loadobs.cpp -------------------------------------------------------------------------------- /test/pyalps/loadobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/pyalps/loadobs.py -------------------------------------------------------------------------------- /test/pyalps/mcanalyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/pyalps/mcanalyze.py -------------------------------------------------------------------------------- /test/pyalps/mcdata.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/pyalps/mcdata.output -------------------------------------------------------------------------------- /test/pyalps/mcdata_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/pyalps/mcdata_test.py -------------------------------------------------------------------------------- /test/pyalps/numpylarge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/pyalps/numpylarge.py -------------------------------------------------------------------------------- /test/pyalps/pyhdf5_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/pyalps/pyhdf5_test.py -------------------------------------------------------------------------------- /test/pyalps/pyhdf5io.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/pyalps/pyhdf5io.output -------------------------------------------------------------------------------- /test/pyalps/pyhdf5io_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/pyalps/pyhdf5io_test.py -------------------------------------------------------------------------------- /test/pyalps/pyioarchive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/pyalps/pyioarchive.py -------------------------------------------------------------------------------- /test/pyalps/pyparams.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/pyalps/pyparams.output -------------------------------------------------------------------------------- /test/pyalps/pyparams_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/pyalps/pyparams_test.py -------------------------------------------------------------------------------- /test/random/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/random/CMakeLists.txt -------------------------------------------------------------------------------- /test/random/random_choice.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/random/random_choice.C -------------------------------------------------------------------------------- /test/utility/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/utility/CMakeLists.txt -------------------------------------------------------------------------------- /test/utility/bitops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/utility/bitops.cpp -------------------------------------------------------------------------------- /test/utility/vmusage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/test/utility/vmusage.cpp -------------------------------------------------------------------------------- /tool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/CMakeLists.txt -------------------------------------------------------------------------------- /tool/alea/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/alea/CMakeLists.txt -------------------------------------------------------------------------------- /tool/alea/mcanalyze_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/alea/mcanalyze_tools.py -------------------------------------------------------------------------------- /tool/alea/mean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/alea/mean.cpp -------------------------------------------------------------------------------- /tool/alea/mean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/alea/mean.py -------------------------------------------------------------------------------- /tool/alea/variance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/alea/variance.cpp -------------------------------------------------------------------------------- /tool/alea/variance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/alea/variance.py -------------------------------------------------------------------------------- /tool/alpspython.bat.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/alpspython.bat.in -------------------------------------------------------------------------------- /tool/alpspython.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/alpspython.in -------------------------------------------------------------------------------- /tool/alpsvars.csh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/alpsvars.csh.in -------------------------------------------------------------------------------- /tool/alpsvars.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/alpsvars.sh.in -------------------------------------------------------------------------------- /tool/archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/archive.cpp -------------------------------------------------------------------------------- /tool/archive_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/archive_index.cpp -------------------------------------------------------------------------------- /tool/archive_index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/archive_index.hpp -------------------------------------------------------------------------------- /tool/archive_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/archive_node.cpp -------------------------------------------------------------------------------- /tool/archive_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/archive_node.hpp -------------------------------------------------------------------------------- /tool/archive_plot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/archive_plot.cpp -------------------------------------------------------------------------------- /tool/archive_plot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/archive_plot.hpp -------------------------------------------------------------------------------- /tool/archive_sqlite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/archive_sqlite.cpp -------------------------------------------------------------------------------- /tool/archive_sqlite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/archive_sqlite.hpp -------------------------------------------------------------------------------- /tool/archive_xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/archive_xml.cpp -------------------------------------------------------------------------------- /tool/archive_xml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/archive_xml.hpp -------------------------------------------------------------------------------- /tool/archivecat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/archivecat -------------------------------------------------------------------------------- /tool/changestylesheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/changestylesheet -------------------------------------------------------------------------------- /tool/compactrun.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/compactrun.C -------------------------------------------------------------------------------- /tool/config.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/config.py.in -------------------------------------------------------------------------------- /tool/convert2html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/convert2html -------------------------------------------------------------------------------- /tool/convert2text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/convert2text -------------------------------------------------------------------------------- /tool/convert2xml.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/convert2xml.C -------------------------------------------------------------------------------- /tool/default_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/default_model.hpp -------------------------------------------------------------------------------- /tool/extractgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/extractgp -------------------------------------------------------------------------------- /tool/extracthtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/extracthtml -------------------------------------------------------------------------------- /tool/extractmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/extractmpl -------------------------------------------------------------------------------- /tool/extracttext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/extracttext -------------------------------------------------------------------------------- /tool/extractxmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/extractxmgr -------------------------------------------------------------------------------- /tool/lattice-preview.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/lattice-preview.in -------------------------------------------------------------------------------- /tool/lattice2xml.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/lattice2xml.C -------------------------------------------------------------------------------- /tool/lattice2xml.ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/lattice2xml.ip -------------------------------------------------------------------------------- /tool/lattice2xml.op: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/lattice2xml.op -------------------------------------------------------------------------------- /tool/lattices_to_vt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/lattices_to_vt.py -------------------------------------------------------------------------------- /tool/license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/license.py -------------------------------------------------------------------------------- /tool/maxent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/maxent.cpp -------------------------------------------------------------------------------- /tool/maxent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/maxent.hpp -------------------------------------------------------------------------------- /tool/maxent_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/maxent_helper.cpp -------------------------------------------------------------------------------- /tool/maxent_parms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/maxent_parms.cpp -------------------------------------------------------------------------------- /tool/maxent_parms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/maxent_parms.hpp -------------------------------------------------------------------------------- /tool/maxent_simulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/maxent_simulation.cpp -------------------------------------------------------------------------------- /tool/msxsl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/msxsl.exe -------------------------------------------------------------------------------- /tool/p2h5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/p2h5.cpp -------------------------------------------------------------------------------- /tool/parameter2hdf5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/parameter2hdf5.C -------------------------------------------------------------------------------- /tool/parameter2xml.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/parameter2xml.C -------------------------------------------------------------------------------- /tool/pconfig.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/pconfig.C -------------------------------------------------------------------------------- /tool/pevaluate.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/pevaluate.C -------------------------------------------------------------------------------- /tool/plot2gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/plot2gp -------------------------------------------------------------------------------- /tool/plot2html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/plot2html -------------------------------------------------------------------------------- /tool/plot2mpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/plot2mpl -------------------------------------------------------------------------------- /tool/plot2text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/plot2text -------------------------------------------------------------------------------- /tool/plot2xmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/plot2xmgr -------------------------------------------------------------------------------- /tool/pltgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/pltgraph.py -------------------------------------------------------------------------------- /tool/postflight.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/postflight.sh.in -------------------------------------------------------------------------------- /tool/poutput.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/poutput.C -------------------------------------------------------------------------------- /tool/preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/preview.py -------------------------------------------------------------------------------- /tool/printgraph.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/printgraph.C -------------------------------------------------------------------------------- /tool/snap2vtk.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/snap2vtk.C -------------------------------------------------------------------------------- /tool/transformall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/transformall -------------------------------------------------------------------------------- /tool/txt2archive.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/txt2archive.C -------------------------------------------------------------------------------- /tool/use_local_stylesheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/use_local_stylesheet -------------------------------------------------------------------------------- /tool/vispython.bat.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/vispython.bat.in -------------------------------------------------------------------------------- /tool/vispython.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/vispython.in -------------------------------------------------------------------------------- /tool/xml2archive.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/xml2archive.C -------------------------------------------------------------------------------- /tool/xslttransform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tool/xslttransform -------------------------------------------------------------------------------- /tutorials/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/CMakeLists.txt -------------------------------------------------------------------------------- /tutorials/alpsize-01-cmake/hello.op: -------------------------------------------------------------------------------- 1 | hello, world 2 | -------------------------------------------------------------------------------- /tutorials/alpsize-06-parameters/wolff.ip: -------------------------------------------------------------------------------- 1 | L = 32 2 | T = 2.2 3 | -------------------------------------------------------------------------------- /tutorials/alpsize-07-alea/wolff.ip: -------------------------------------------------------------------------------- 1 | L = 32 2 | T = 2.2 3 | -------------------------------------------------------------------------------- /tutorials/alpsize-08-lattice/lattice.ip: -------------------------------------------------------------------------------- 1 | LATTICE = "square lattice" 2 | L = 4 3 | -------------------------------------------------------------------------------- /tutorials/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/cleanup.sh -------------------------------------------------------------------------------- /tutorials/ed-02-gaps/parm2a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/ed-02-gaps/parm2a -------------------------------------------------------------------------------- /tutorials/ed-02-gaps/parm2b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/ed-02-gaps/parm2b -------------------------------------------------------------------------------- /tutorials/mc-06-qwl/parm6a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/mc-06-qwl/parm6a -------------------------------------------------------------------------------- /tutorials/mc-06-qwl/parm6c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/mc-06-qwl/parm6c -------------------------------------------------------------------------------- /tutorials/mc-06-qwl/parm6d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/mc-06-qwl/parm6d -------------------------------------------------------------------------------- /tutorials/ngs/3_mpi/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/ngs/3_mpi/main.cpp -------------------------------------------------------------------------------- /tutorials/notebook/ja/ed01a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/ed01a -------------------------------------------------------------------------------- /tutorials/notebook/ja/ed02a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/ed02a -------------------------------------------------------------------------------- /tutorials/notebook/ja/ed02b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/ed02b -------------------------------------------------------------------------------- /tutorials/notebook/ja/ed03a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/ed03a -------------------------------------------------------------------------------- /tutorials/notebook/ja/ed03b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/ed03b -------------------------------------------------------------------------------- /tutorials/notebook/ja/ed03c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/ed03c -------------------------------------------------------------------------------- /tutorials/notebook/ja/ed04a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/ed04a -------------------------------------------------------------------------------- /tutorials/notebook/ja/ed04b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/ed04b -------------------------------------------------------------------------------- /tutorials/notebook/ja/ed06a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/ed06a -------------------------------------------------------------------------------- /tutorials/notebook/ja/ed06b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/ed06b -------------------------------------------------------------------------------- /tutorials/notebook/ja/ed06c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/ed06c -------------------------------------------------------------------------------- /tutorials/notebook/ja/ed06d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/ed06d -------------------------------------------------------------------------------- /tutorials/notebook/ja/mc01b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/mc01b -------------------------------------------------------------------------------- /tutorials/notebook/ja/mc02a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/mc02a -------------------------------------------------------------------------------- /tutorials/notebook/ja/mc02b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/mc02b -------------------------------------------------------------------------------- /tutorials/notebook/ja/mc02c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/mc02c -------------------------------------------------------------------------------- /tutorials/notebook/ja/mc02d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/mc02d -------------------------------------------------------------------------------- /tutorials/notebook/ja/mc03a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/mc03a -------------------------------------------------------------------------------- /tutorials/notebook/ja/mc03b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/mc03b -------------------------------------------------------------------------------- /tutorials/notebook/ja/mc04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/mc04 -------------------------------------------------------------------------------- /tutorials/notebook/ja/mc05a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/mc05a -------------------------------------------------------------------------------- /tutorials/notebook/ja/mc05b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/mc05b -------------------------------------------------------------------------------- /tutorials/notebook/ja/mc06a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/mc06a -------------------------------------------------------------------------------- /tutorials/notebook/ja/mc06c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/mc06c -------------------------------------------------------------------------------- /tutorials/notebook/ja/mc06d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/mc06d -------------------------------------------------------------------------------- /tutorials/notebook/ja/mc07a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/mc07a -------------------------------------------------------------------------------- /tutorials/notebook/ja/mc07b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/mc07b -------------------------------------------------------------------------------- /tutorials/notebook/ja/mc08a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/mc08a -------------------------------------------------------------------------------- /tutorials/notebook/ja/mc08b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/notebook/ja/mc08b -------------------------------------------------------------------------------- /tutorials/runtutorial.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/runtutorial.sh -------------------------------------------------------------------------------- /tutorials/test_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/test_py.py -------------------------------------------------------------------------------- /tutorials/test_vt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/tutorials/test_vt.py -------------------------------------------------------------------------------- /vistrails/alps/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/vistrails/alps/init.py -------------------------------------------------------------------------------- /vistrails/alps/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/vistrails/alps/models.py -------------------------------------------------------------------------------- /vistrails/alps/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/vistrails/alps/plots.py -------------------------------------------------------------------------------- /vistrails/alps/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/vistrails/alps/system.py -------------------------------------------------------------------------------- /vistrails/alps/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALPSim/ALPS/HEAD/vistrails/alps/tools.py --------------------------------------------------------------------------------