├── .gitignore ├── .travis.yml ├── .zenodo.json ├── ACKNOWLEDGE.TXT ├── CMakeLists.txt ├── HEADER.TXT ├── LICENSE.TXT ├── README.md ├── cmake ├── EnableGtests.cmake ├── FindEigen3.cmake ├── FindGSL.cmake └── maxent_config.hpp.in ├── doxygen └── Doxyfile ├── examples ├── Advanced_Features.pdf ├── Bosonic │ ├── Bosonic_example.pdf │ ├── G_im │ ├── G_re │ ├── bosonic.param │ ├── bosonic_ph.param │ └── dat_in ├── Input_and_output_format.pdf ├── Legendre │ ├── Gl.dat │ ├── Legendre_example.pdf │ ├── Spect_in │ └── in.param ├── Self Energy │ ├── U1 │ │ ├── G_im │ │ ├── G_re │ │ ├── Selfenergy │ │ ├── Selfenergy_U1_example.pdf │ │ ├── Selfin │ │ └── in.param │ └── U10 │ │ ├── G_im │ │ ├── G_re │ │ ├── Selfenergy │ │ ├── Selfenergy_U10_example.pdf │ │ ├── Selfin │ │ ├── green.param │ │ └── in.param ├── U0 │ ├── G_im │ ├── G_re │ ├── Gtau │ ├── U0_example.pdf │ ├── in.param │ └── in_tau.param ├── U2 │ ├── G_im │ ├── G_re │ ├── G_tau │ ├── Gomegain │ ├── README.md │ ├── Selfenergy │ ├── frequency.param │ ├── self.param │ └── time.param ├── conventions_and_kernels.pdf ├── default_models.pdf └── grids.pdf ├── kk ├── CMakeLists.txt ├── README.md └── kk.cpp ├── legendre_convert ├── CMakeLists.txt ├── README.md └── legendre_convert.cpp ├── pade └── pade_arbitrary_degree │ ├── CMakeLists.txt │ ├── lu.cpp │ ├── main.cpp │ ├── main_bary.cpp │ ├── main_gmp.cpp │ ├── pade.cpp │ ├── pade.hpp │ ├── pade_grid.cpp │ ├── pade_imag.cpp │ ├── pade_interpolator.cpp │ ├── pade_interpolator_old.cpp │ ├── pade_real.cpp │ └── pade_solver.cpp ├── scripts ├── check-module-copyright-notice.py ├── fix-module-copyright-notice.py └── notice.py ├── src ├── default_model.cpp ├── default_model.hpp ├── eigen_hdf5.hpp ├── eigen_lapack.hpp ├── maxent.cpp ├── maxent.hpp ├── maxent_backcont.cpp ├── maxent_backcont.hpp ├── maxent_grid.cpp ├── maxent_grid.hpp ├── maxent_helper.cpp ├── maxent_kernel.cpp ├── maxent_kernel.hpp ├── maxent_matrix_def.hpp ├── maxent_params.cpp ├── maxent_params.hpp └── maxent_simulation.cpp └── test ├── CMakeLists.txt ├── backcontTest.cpp ├── default_modelTest.cpp ├── gridTest.cpp ├── gtest-all.cc ├── gtest.h ├── gtest_main.cc ├── paramFailureTest.cpp ├── paramsTest.cpp ├── simulationTest.cpp └── write_test_files.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/.travis.yml -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/.zenodo.json -------------------------------------------------------------------------------- /ACKNOWLEDGE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/ACKNOWLEDGE.TXT -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /HEADER.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/HEADER.TXT -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/README.md -------------------------------------------------------------------------------- /cmake/EnableGtests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/cmake/EnableGtests.cmake -------------------------------------------------------------------------------- /cmake/FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/cmake/FindEigen3.cmake -------------------------------------------------------------------------------- /cmake/FindGSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/cmake/FindGSL.cmake -------------------------------------------------------------------------------- /cmake/maxent_config.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/cmake/maxent_config.hpp.in -------------------------------------------------------------------------------- /doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/doxygen/Doxyfile -------------------------------------------------------------------------------- /examples/Advanced_Features.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/Advanced_Features.pdf -------------------------------------------------------------------------------- /examples/Bosonic/Bosonic_example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/Bosonic/Bosonic_example.pdf -------------------------------------------------------------------------------- /examples/Bosonic/G_im: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/Bosonic/G_im -------------------------------------------------------------------------------- /examples/Bosonic/G_re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/Bosonic/G_re -------------------------------------------------------------------------------- /examples/Bosonic/bosonic.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/Bosonic/bosonic.param -------------------------------------------------------------------------------- /examples/Bosonic/bosonic_ph.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/Bosonic/bosonic_ph.param -------------------------------------------------------------------------------- /examples/Bosonic/dat_in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/Bosonic/dat_in -------------------------------------------------------------------------------- /examples/Input_and_output_format.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/Input_and_output_format.pdf -------------------------------------------------------------------------------- /examples/Legendre/Gl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/Legendre/Gl.dat -------------------------------------------------------------------------------- /examples/Legendre/Legendre_example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/Legendre/Legendre_example.pdf -------------------------------------------------------------------------------- /examples/Legendre/Spect_in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/Legendre/Spect_in -------------------------------------------------------------------------------- /examples/Legendre/in.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/Legendre/in.param -------------------------------------------------------------------------------- /examples/Self Energy/U1/G_im: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/Self Energy/U1/G_im -------------------------------------------------------------------------------- /examples/Self Energy/U1/G_re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/Self Energy/U1/G_re -------------------------------------------------------------------------------- /examples/Self Energy/U1/Selfenergy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/Self Energy/U1/Selfenergy -------------------------------------------------------------------------------- /examples/Self Energy/U1/Selfenergy_U1_example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/Self Energy/U1/Selfenergy_U1_example.pdf -------------------------------------------------------------------------------- /examples/Self Energy/U1/Selfin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/Self Energy/U1/Selfin -------------------------------------------------------------------------------- /examples/Self Energy/U1/in.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/Self Energy/U1/in.param -------------------------------------------------------------------------------- /examples/Self Energy/U10/G_im: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/Self Energy/U10/G_im -------------------------------------------------------------------------------- /examples/Self Energy/U10/G_re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/Self Energy/U10/G_re -------------------------------------------------------------------------------- /examples/Self Energy/U10/Selfenergy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/Self Energy/U10/Selfenergy -------------------------------------------------------------------------------- /examples/Self Energy/U10/Selfenergy_U10_example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/Self Energy/U10/Selfenergy_U10_example.pdf -------------------------------------------------------------------------------- /examples/Self Energy/U10/Selfin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/Self Energy/U10/Selfin -------------------------------------------------------------------------------- /examples/Self Energy/U10/green.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/Self Energy/U10/green.param -------------------------------------------------------------------------------- /examples/Self Energy/U10/in.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/Self Energy/U10/in.param -------------------------------------------------------------------------------- /examples/U0/G_im: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/U0/G_im -------------------------------------------------------------------------------- /examples/U0/G_re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/U0/G_re -------------------------------------------------------------------------------- /examples/U0/Gtau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/U0/Gtau -------------------------------------------------------------------------------- /examples/U0/U0_example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/U0/U0_example.pdf -------------------------------------------------------------------------------- /examples/U0/in.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/U0/in.param -------------------------------------------------------------------------------- /examples/U0/in_tau.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/U0/in_tau.param -------------------------------------------------------------------------------- /examples/U2/G_im: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/U2/G_im -------------------------------------------------------------------------------- /examples/U2/G_re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/U2/G_re -------------------------------------------------------------------------------- /examples/U2/G_tau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/U2/G_tau -------------------------------------------------------------------------------- /examples/U2/Gomegain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/U2/Gomegain -------------------------------------------------------------------------------- /examples/U2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/U2/README.md -------------------------------------------------------------------------------- /examples/U2/Selfenergy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/U2/Selfenergy -------------------------------------------------------------------------------- /examples/U2/frequency.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/U2/frequency.param -------------------------------------------------------------------------------- /examples/U2/self.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/U2/self.param -------------------------------------------------------------------------------- /examples/U2/time.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/U2/time.param -------------------------------------------------------------------------------- /examples/conventions_and_kernels.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/conventions_and_kernels.pdf -------------------------------------------------------------------------------- /examples/default_models.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/default_models.pdf -------------------------------------------------------------------------------- /examples/grids.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/examples/grids.pdf -------------------------------------------------------------------------------- /kk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/kk/CMakeLists.txt -------------------------------------------------------------------------------- /kk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/kk/README.md -------------------------------------------------------------------------------- /kk/kk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/kk/kk.cpp -------------------------------------------------------------------------------- /legendre_convert/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/legendre_convert/CMakeLists.txt -------------------------------------------------------------------------------- /legendre_convert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/legendre_convert/README.md -------------------------------------------------------------------------------- /legendre_convert/legendre_convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/legendre_convert/legendre_convert.cpp -------------------------------------------------------------------------------- /pade/pade_arbitrary_degree/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/pade/pade_arbitrary_degree/CMakeLists.txt -------------------------------------------------------------------------------- /pade/pade_arbitrary_degree/lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/pade/pade_arbitrary_degree/lu.cpp -------------------------------------------------------------------------------- /pade/pade_arbitrary_degree/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/pade/pade_arbitrary_degree/main.cpp -------------------------------------------------------------------------------- /pade/pade_arbitrary_degree/main_bary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/pade/pade_arbitrary_degree/main_bary.cpp -------------------------------------------------------------------------------- /pade/pade_arbitrary_degree/main_gmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/pade/pade_arbitrary_degree/main_gmp.cpp -------------------------------------------------------------------------------- /pade/pade_arbitrary_degree/pade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/pade/pade_arbitrary_degree/pade.cpp -------------------------------------------------------------------------------- /pade/pade_arbitrary_degree/pade.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/pade/pade_arbitrary_degree/pade.hpp -------------------------------------------------------------------------------- /pade/pade_arbitrary_degree/pade_grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/pade/pade_arbitrary_degree/pade_grid.cpp -------------------------------------------------------------------------------- /pade/pade_arbitrary_degree/pade_imag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/pade/pade_arbitrary_degree/pade_imag.cpp -------------------------------------------------------------------------------- /pade/pade_arbitrary_degree/pade_interpolator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/pade/pade_arbitrary_degree/pade_interpolator.cpp -------------------------------------------------------------------------------- /pade/pade_arbitrary_degree/pade_interpolator_old.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/pade/pade_arbitrary_degree/pade_interpolator_old.cpp -------------------------------------------------------------------------------- /pade/pade_arbitrary_degree/pade_real.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/pade/pade_arbitrary_degree/pade_real.cpp -------------------------------------------------------------------------------- /pade/pade_arbitrary_degree/pade_solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/pade/pade_arbitrary_degree/pade_solver.cpp -------------------------------------------------------------------------------- /scripts/check-module-copyright-notice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/scripts/check-module-copyright-notice.py -------------------------------------------------------------------------------- /scripts/fix-module-copyright-notice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/scripts/fix-module-copyright-notice.py -------------------------------------------------------------------------------- /scripts/notice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/scripts/notice.py -------------------------------------------------------------------------------- /src/default_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/src/default_model.cpp -------------------------------------------------------------------------------- /src/default_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/src/default_model.hpp -------------------------------------------------------------------------------- /src/eigen_hdf5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/src/eigen_hdf5.hpp -------------------------------------------------------------------------------- /src/eigen_lapack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/src/eigen_lapack.hpp -------------------------------------------------------------------------------- /src/maxent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/src/maxent.cpp -------------------------------------------------------------------------------- /src/maxent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/src/maxent.hpp -------------------------------------------------------------------------------- /src/maxent_backcont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/src/maxent_backcont.cpp -------------------------------------------------------------------------------- /src/maxent_backcont.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/src/maxent_backcont.hpp -------------------------------------------------------------------------------- /src/maxent_grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/src/maxent_grid.cpp -------------------------------------------------------------------------------- /src/maxent_grid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/src/maxent_grid.hpp -------------------------------------------------------------------------------- /src/maxent_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/src/maxent_helper.cpp -------------------------------------------------------------------------------- /src/maxent_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/src/maxent_kernel.cpp -------------------------------------------------------------------------------- /src/maxent_kernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/src/maxent_kernel.hpp -------------------------------------------------------------------------------- /src/maxent_matrix_def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/src/maxent_matrix_def.hpp -------------------------------------------------------------------------------- /src/maxent_params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/src/maxent_params.cpp -------------------------------------------------------------------------------- /src/maxent_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/src/maxent_params.hpp -------------------------------------------------------------------------------- /src/maxent_simulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/src/maxent_simulation.cpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/backcontTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/test/backcontTest.cpp -------------------------------------------------------------------------------- /test/default_modelTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/test/default_modelTest.cpp -------------------------------------------------------------------------------- /test/gridTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/test/gridTest.cpp -------------------------------------------------------------------------------- /test/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/test/gtest-all.cc -------------------------------------------------------------------------------- /test/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/test/gtest.h -------------------------------------------------------------------------------- /test/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/test/gtest_main.cc -------------------------------------------------------------------------------- /test/paramFailureTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/test/paramFailureTest.cpp -------------------------------------------------------------------------------- /test/paramsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/test/paramsTest.cpp -------------------------------------------------------------------------------- /test/simulationTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/test/simulationTest.cpp -------------------------------------------------------------------------------- /test/write_test_files.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQMP/Maxent/HEAD/test/write_test_files.hpp --------------------------------------------------------------------------------