├── Lecture_1 ├── Lecture_1_Python.pdf ├── beginners_python_cheat_sheet_pcc_all.pdf └── code │ ├── basic_examples │ ├── data.txt │ ├── example0_hello.py │ ├── example10_read.py │ ├── example11_readsys.py │ ├── example12_readfile.py │ ├── example12_writefile.py │ ├── example13_plot.py │ ├── example1_hello.py │ ├── example2_welcome.py │ ├── example3_while.py │ ├── example4_sum.py │ ├── example5_forloop.py │ ├── example6_forloop.py │ ├── example7_greet.py │ ├── example8_sum.py │ ├── example9_branching.py │ ├── matrix.txt │ ├── test.png │ ├── test.py │ └── text.txt │ └── opt_nonlinear │ ├── example1_opt.py │ └── example2_nonlinear.py ├── Lecture_2 ├── Lecture_2_SparseGrid.pdf ├── Lecture_2_supplement_YaleHPC.pdf ├── SparseGridCode │ ├── Econ_example_ramsey │ │ ├── FOCs.m │ │ └── TimeIterationWithSparseGrids.m │ ├── TasmanianSparseGrids.zip │ ├── analytical_examples │ │ ├── TASMANIAN_Matlab │ │ │ └── tsg_example.m │ │ └── TASMANIAN_Python │ │ │ ├── TasmanianSG.in.py │ │ │ ├── TasmanianSG.py │ │ │ ├── TasmanianSG.pyc │ │ │ └── tsg_example.py │ ├── growth_model │ │ ├── mpi_growth │ │ │ ├── TasmanianSG.py │ │ │ ├── TasmanianSG.pyc │ │ │ ├── cleanup.sh │ │ │ ├── econ.py │ │ │ ├── econ.pyc │ │ │ ├── interpolation.py │ │ │ ├── interpolation.pyc │ │ │ ├── interpolation_iter.py │ │ │ ├── interpolation_iter.pyc │ │ │ ├── ipopt_wrapper.py │ │ │ ├── ipopt_wrapper.pyc │ │ │ ├── main.py │ │ │ ├── nonlinear_solver_initial.py │ │ │ ├── nonlinear_solver_initial.pyc │ │ │ ├── nonlinear_solver_iterate.py │ │ │ ├── nonlinear_solver_iterate.pyc │ │ │ ├── parameters.py │ │ │ ├── parameters.pyc │ │ │ ├── postprocessing.py │ │ │ ├── postprocessing.pyc │ │ │ ├── submit_MPI_yale.sh │ │ │ └── test_initial_sg.py │ │ ├── serial │ │ │ ├── TasmanianSG.py │ │ │ ├── cleanup.sh │ │ │ ├── econ.py │ │ │ ├── interpolation.py │ │ │ ├── interpolation_iter.py │ │ │ ├── ipopt_wrapper.py │ │ │ ├── main.py │ │ │ ├── nonlinear_solver_initial.py │ │ │ ├── nonlinear_solver_iterate.py │ │ │ ├── parameters.py │ │ │ ├── postprocessing.py │ │ │ ├── submit_MPI_yale.sh │ │ │ └── test_initial_sg.py │ │ └── serial_stochastic │ │ │ ├── .DS_Store │ │ │ ├── TasmanianSG.in.py │ │ │ ├── TasmanianSG.py │ │ │ ├── cleanup.sh │ │ │ ├── econ.py │ │ │ ├── interpolation.py │ │ │ ├── interpolation_iter.py │ │ │ ├── ipopt_wrapper.py │ │ │ ├── main.py │ │ │ ├── nonlinear_solver_initial.py │ │ │ ├── nonlinear_solver_iterate.py │ │ │ ├── parameters.py │ │ │ ├── postprocessing.py │ │ │ ├── submit_MPI_yale.sh │ │ │ └── test_initial_sg.py │ ├── install_SG.sh │ ├── pyipopt │ │ ├── Ipopt-3.12.5 │ │ │ ├── .travis.yml │ │ │ ├── BuildTools │ │ │ │ ├── MSVisualStudio │ │ │ │ │ ├── v10 │ │ │ │ │ │ ├── Common.props │ │ │ │ │ │ ├── Debug.props │ │ │ │ │ │ └── Release.props │ │ │ │ │ └── v9 │ │ │ │ │ │ └── BuildTools.vcproj │ │ │ │ ├── Makemain.inc │ │ │ │ ├── coin-functions │ │ │ │ ├── coin.m4 │ │ │ │ ├── commit_new_release │ │ │ │ ├── commit_new_stable │ │ │ │ ├── compile_f2c │ │ │ │ │ ├── INSTALL │ │ │ │ │ ├── README │ │ │ │ │ └── compile_f2c │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ ├── depcomp │ │ │ │ ├── get.dependencies.sh │ │ │ │ ├── headers │ │ │ │ │ ├── configall_system.h │ │ │ │ │ └── configall_system_msc.h │ │ │ │ ├── install-sh │ │ │ │ ├── ltmain.sh │ │ │ │ ├── missing │ │ │ │ ├── prepare_new_release │ │ │ │ ├── prepare_new_stable │ │ │ │ ├── run_autotools │ │ │ │ ├── set_externals │ │ │ │ └── share │ │ │ │ │ └── config.site │ │ │ ├── ChangeLog │ │ │ ├── Dependencies │ │ │ ├── INSTALL │ │ │ ├── Ipopt │ │ │ │ ├── AUTHORS │ │ │ │ ├── INSTALL │ │ │ │ ├── LICENSE │ │ │ │ ├── MSVisualStudio │ │ │ │ │ ├── BinaryDLL-Link-Example │ │ │ │ │ │ ├── BinaryDLL-Link-Example.sln │ │ │ │ │ │ ├── BinaryDLL-Link-Example.vcproj │ │ │ │ │ │ └── README.TXT │ │ │ │ │ └── v8-ifort │ │ │ │ │ │ ├── CoinBlas │ │ │ │ │ │ └── CoinBlas.vfproj │ │ │ │ │ │ ├── CoinLapack │ │ │ │ │ │ └── CoinLapack.vfproj │ │ │ │ │ │ ├── CoinMetis │ │ │ │ │ │ ├── CoinMetis.icproj │ │ │ │ │ │ ├── CoinMetis.vcproj │ │ │ │ │ │ └── strings.h │ │ │ │ │ │ ├── CoinMumps │ │ │ │ │ │ └── CoinMumpsF90.vfproj │ │ │ │ │ │ ├── CoinMumpsC │ │ │ │ │ │ ├── CoinMumpsC.icproj │ │ │ │ │ │ └── CoinMumpsC.vcproj │ │ │ │ │ │ ├── IpOpt-ifort.sln │ │ │ │ │ │ ├── IpOpt-vc10.sln │ │ │ │ │ │ ├── IpOpt │ │ │ │ │ │ ├── ExportBinaries.bat │ │ │ │ │ │ ├── IntelPaths.props │ │ │ │ │ │ ├── IntelPaths.vsprops │ │ │ │ │ │ ├── IpOpt-vc10.vcxproj │ │ │ │ │ │ ├── IpOpt-vc10.vcxproj.filters │ │ │ │ │ │ ├── IpOpt.icproj │ │ │ │ │ │ ├── IpOpt.rc │ │ │ │ │ │ ├── IpOpt.vcproj │ │ │ │ │ │ ├── README-LIB.TXT │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── config_ipopt.h │ │ │ │ │ │ └── resource.h │ │ │ │ │ │ ├── IpOptFSS │ │ │ │ │ │ ├── Dummy.c │ │ │ │ │ │ ├── IpOptFSS.rc │ │ │ │ │ │ ├── IpOptFSS.vcproj │ │ │ │ │ │ ├── IpoptFSS.def │ │ │ │ │ │ └── resource.h │ │ │ │ │ │ ├── IpOptFor │ │ │ │ │ │ └── IpOptFor.vfproj │ │ │ │ │ │ ├── README.TXT │ │ │ │ │ │ ├── hs071_cpp │ │ │ │ │ │ ├── hs071_cpp-vc10.vcxproj │ │ │ │ │ │ └── hs071_cpp.vcproj │ │ │ │ │ │ ├── libhsl-no-MA57 │ │ │ │ │ │ ├── libhsl-no-MA57.vfproj │ │ │ │ │ │ └── libhsl.def │ │ │ │ │ │ └── libhsl │ │ │ │ │ │ ├── libhsl.def │ │ │ │ │ │ └── libhsl.vfproj │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── contrib │ │ │ │ │ ├── JavaInterface │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── javafiles.lst │ │ │ │ │ │ ├── jipopt.cpp │ │ │ │ │ │ ├── manifest.txt │ │ │ │ │ │ └── org │ │ │ │ │ │ │ └── coinor │ │ │ │ │ │ │ ├── Ipopt.java │ │ │ │ │ │ │ └── examples │ │ │ │ │ │ │ ├── HS071.java │ │ │ │ │ │ │ └── scalable │ │ │ │ │ │ │ ├── LuksanVlcek1.java │ │ │ │ │ │ │ ├── Scalable.java │ │ │ │ │ │ │ └── SolveProblem.java │ │ │ │ │ ├── MatlabInterface │ │ │ │ │ │ ├── MatlabInterface.site │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── examplehs038.m │ │ │ │ │ │ │ ├── examplehs051.m │ │ │ │ │ │ │ ├── examplehs071.m │ │ │ │ │ │ │ ├── examplelasso.m │ │ │ │ │ │ │ ├── lasso.m │ │ │ │ │ │ │ └── startup.m.in │ │ │ │ │ │ ├── get.Gnumex │ │ │ │ │ │ ├── ipopt.m │ │ │ │ │ │ ├── ipopt_auxdata.m │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── callbackfunctions.cpp │ │ │ │ │ │ │ ├── callbackfunctions.hpp │ │ │ │ │ │ │ ├── ipopt.cpp │ │ │ │ │ │ │ ├── ipoptoptions.cpp │ │ │ │ │ │ │ ├── ipoptoptions.hpp │ │ │ │ │ │ │ ├── iterate.cpp │ │ │ │ │ │ │ ├── iterate.hpp │ │ │ │ │ │ │ ├── matlabexception.cpp │ │ │ │ │ │ │ ├── matlabexception.hpp │ │ │ │ │ │ │ ├── matlabfunctionhandle.cpp │ │ │ │ │ │ │ ├── matlabfunctionhandle.hpp │ │ │ │ │ │ │ ├── matlabinfo.cpp │ │ │ │ │ │ │ ├── matlabinfo.hpp │ │ │ │ │ │ │ ├── matlabjournal.cpp │ │ │ │ │ │ │ ├── matlabjournal.hpp │ │ │ │ │ │ │ ├── matlabprogram.cpp │ │ │ │ │ │ │ ├── matlabprogram.hpp │ │ │ │ │ │ │ ├── options.cpp │ │ │ │ │ │ │ ├── options.hpp │ │ │ │ │ │ │ ├── sparsematrix.cpp │ │ │ │ │ │ │ └── sparsematrix.hpp │ │ │ │ │ ├── RInterface │ │ │ │ │ │ ├── CHANGELOG │ │ │ │ │ │ ├── DESCRIPTION │ │ │ │ │ │ ├── NAMESPACE │ │ │ │ │ │ ├── R │ │ │ │ │ │ │ ├── get.option.types.R │ │ │ │ │ │ │ ├── ipoptr.R │ │ │ │ │ │ │ ├── is.ipoptr.R │ │ │ │ │ │ │ ├── make.sparse.R │ │ │ │ │ │ │ ├── plot.sparseness.R │ │ │ │ │ │ │ ├── print.ipoptr.R │ │ │ │ │ │ │ └── print.sparseness.R │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── inst │ │ │ │ │ │ │ ├── CITATION │ │ │ │ │ │ │ └── doc │ │ │ │ │ │ │ │ ├── ipoptr.Rnw │ │ │ │ │ │ │ │ ├── ipoptr.pdf │ │ │ │ │ │ │ │ └── reflist.bib │ │ │ │ │ │ ├── man │ │ │ │ │ │ │ ├── ipoptr-package.Rd │ │ │ │ │ │ │ ├── ipoptr.Rd │ │ │ │ │ │ │ ├── is.ipoptr.Rd │ │ │ │ │ │ │ ├── make.sparse.Rd │ │ │ │ │ │ │ ├── plot.sparseness.Rd │ │ │ │ │ │ │ ├── print.ipoptr.Rd │ │ │ │ │ │ │ └── print.sparseness.Rd │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── IpoptRJournal.cpp │ │ │ │ │ │ │ ├── IpoptRJournal.hpp │ │ │ │ │ │ │ ├── IpoptRNLP.cpp │ │ │ │ │ │ │ ├── IpoptRNLP.hpp │ │ │ │ │ │ │ ├── Makevars.in │ │ │ │ │ │ │ └── ipoptr.cpp │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ ├── approx_banana.R │ │ │ │ │ │ │ ├── banana.R │ │ │ │ │ │ │ ├── hs071_nlp.R │ │ │ │ │ │ │ ├── lasso.R │ │ │ │ │ │ │ ├── mynlp.R │ │ │ │ │ │ │ ├── parameters.R │ │ │ │ │ │ │ └── sparseness.R │ │ │ │ │ └── sIPOPT │ │ │ │ │ │ ├── AmplSolver │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── SensAmplTNLP.cpp │ │ │ │ │ │ ├── SensAmplTNLP.hpp │ │ │ │ │ │ └── ampl_sipopt.cpp │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── iecrv5.bst │ │ │ │ │ │ ├── sipopt.bib │ │ │ │ │ │ ├── sipopt_manual.pdf │ │ │ │ │ │ └── sipopt_manual.tex │ │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── hicks_ampl │ │ │ │ │ │ │ ├── hicks.dat │ │ │ │ │ │ │ ├── hicks.mod │ │ │ │ │ │ │ ├── hicks.run │ │ │ │ │ │ │ ├── ipopt.opt │ │ │ │ │ │ │ └── nmpcresults.inc │ │ │ │ │ │ ├── parametric_ampl │ │ │ │ │ │ │ ├── parametric.mod │ │ │ │ │ │ │ └── parametric.run │ │ │ │ │ │ ├── parametric_cpp │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── parametricTNLP.cpp │ │ │ │ │ │ │ ├── parametricTNLP.hpp │ │ │ │ │ │ │ └── parametric_driver.cpp │ │ │ │ │ │ ├── parametric_dsdp_cpp │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── parametricTNLP.cpp │ │ │ │ │ │ │ ├── parametricTNLP.hpp │ │ │ │ │ │ │ ├── parametricTNLP2.cpp │ │ │ │ │ │ │ └── parametric_dsdp_driver.cpp │ │ │ │ │ │ ├── redhess_ampl │ │ │ │ │ │ │ └── red_hess.run │ │ │ │ │ │ └── redhess_cpp │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── MySensTNLP.cpp │ │ │ │ │ │ │ ├── MySensTNLP.hpp │ │ │ │ │ │ │ └── redhess_cpp.cpp │ │ │ │ │ │ ├── install.txt │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ ├── src │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── SensAlgorithm.cpp │ │ │ │ │ │ ├── SensAlgorithm.hpp │ │ │ │ │ │ ├── SensApplication.cpp │ │ │ │ │ │ ├── SensApplication.hpp │ │ │ │ │ │ ├── SensBacksolver.hpp │ │ │ │ │ │ ├── SensBuilder.cpp │ │ │ │ │ │ ├── SensBuilder.hpp │ │ │ │ │ │ ├── SensDenseGenSchurDriver.cpp │ │ │ │ │ │ ├── SensDenseGenSchurDriver.hpp │ │ │ │ │ │ ├── SensIndexPCalculator.cpp │ │ │ │ │ │ ├── SensIndexPCalculator.hpp │ │ │ │ │ │ ├── SensIndexSchurData.cpp │ │ │ │ │ │ ├── SensIndexSchurData.hpp │ │ │ │ │ │ ├── SensMeasurement.hpp │ │ │ │ │ │ ├── SensMetadataMeasurement.cpp │ │ │ │ │ │ ├── SensMetadataMeasurement.hpp │ │ │ │ │ │ ├── SensPCalculator.hpp │ │ │ │ │ │ ├── SensReducedHessianCalculator.cpp │ │ │ │ │ │ ├── SensReducedHessianCalculator.hpp │ │ │ │ │ │ ├── SensRegOp.cpp │ │ │ │ │ │ ├── SensRegOp.hpp │ │ │ │ │ │ ├── SensSchurData.hpp │ │ │ │ │ │ ├── SensSchurDriver.hpp │ │ │ │ │ │ ├── SensSimpleBacksolver.cpp │ │ │ │ │ │ ├── SensSimpleBacksolver.hpp │ │ │ │ │ │ ├── SensStdStepCalc.cpp │ │ │ │ │ │ ├── SensStdStepCalc.hpp │ │ │ │ │ │ ├── SensStepCalc.hpp │ │ │ │ │ │ ├── SensSuffixHandler.hpp │ │ │ │ │ │ ├── SensUtils.cpp │ │ │ │ │ │ └── SensUtils.hpp │ │ │ │ │ │ └── toDo.txt │ │ │ │ ├── depcomp │ │ │ │ ├── doc │ │ │ │ │ ├── documentation.bbl │ │ │ │ │ ├── documentation.pdf │ │ │ │ │ ├── documentation.tex │ │ │ │ │ ├── hs071_warmstart.mod │ │ │ │ │ ├── makehtml.sh │ │ │ │ │ ├── options.tex │ │ │ │ │ └── options_ampl.tex │ │ │ │ ├── doxydoc │ │ │ │ │ └── doxygen.conf.in │ │ │ │ ├── examples │ │ │ │ │ ├── Cpp_example │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── MyNLP.cpp │ │ │ │ │ │ ├── MyNLP.hpp │ │ │ │ │ │ └── cpp_example.cpp │ │ │ │ │ ├── ScalableProblems │ │ │ │ │ │ ├── LuksanVlcek1.cpp │ │ │ │ │ │ ├── LuksanVlcek1.hpp │ │ │ │ │ │ ├── LuksanVlcek2.cpp │ │ │ │ │ │ ├── LuksanVlcek2.hpp │ │ │ │ │ │ ├── LuksanVlcek3.cpp │ │ │ │ │ │ ├── LuksanVlcek3.hpp │ │ │ │ │ │ ├── LuksanVlcek4.cpp │ │ │ │ │ │ ├── LuksanVlcek4.hpp │ │ │ │ │ │ ├── LuksanVlcek5.cpp │ │ │ │ │ │ ├── LuksanVlcek5.hpp │ │ │ │ │ │ ├── LuksanVlcek6.cpp │ │ │ │ │ │ ├── LuksanVlcek6.hpp │ │ │ │ │ │ ├── LuksanVlcek7.cpp │ │ │ │ │ │ ├── LuksanVlcek7.hpp │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── MittelmannBndryCntrlDiri.cpp │ │ │ │ │ │ ├── MittelmannBndryCntrlDiri.hpp │ │ │ │ │ │ ├── MittelmannBndryCntrlDiri3D.cpp │ │ │ │ │ │ ├── MittelmannBndryCntrlDiri3D.hpp │ │ │ │ │ │ ├── MittelmannBndryCntrlDiri3D_27.cpp │ │ │ │ │ │ ├── MittelmannBndryCntrlDiri3D_27.hpp │ │ │ │ │ │ ├── MittelmannBndryCntrlDiri3Dsin.cpp │ │ │ │ │ │ ├── MittelmannBndryCntrlDiri3Dsin.hpp │ │ │ │ │ │ ├── MittelmannBndryCntrlNeum.cpp │ │ │ │ │ │ ├── MittelmannBndryCntrlNeum.hpp │ │ │ │ │ │ ├── MittelmannDistCntrlDiri.cpp │ │ │ │ │ │ ├── MittelmannDistCntrlDiri.hpp │ │ │ │ │ │ ├── MittelmannDistCntrlNeumA.cpp │ │ │ │ │ │ ├── MittelmannDistCntrlNeumA.hpp │ │ │ │ │ │ ├── MittelmannDistCntrlNeumB.cpp │ │ │ │ │ │ ├── MittelmannDistCntrlNeumB.hpp │ │ │ │ │ │ ├── MittelmannParaCntrl.hpp │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── RegisteredTNLP.cpp │ │ │ │ │ │ ├── RegisteredTNLP.hpp │ │ │ │ │ │ ├── config.h.in │ │ │ │ │ │ └── solve_problem.cpp │ │ │ │ │ ├── hs071_c │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── hs071_c.c │ │ │ │ │ ├── hs071_cpp │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── hs071_main.cpp │ │ │ │ │ │ ├── hs071_nlp.cpp │ │ │ │ │ │ └── hs071_nlp.hpp │ │ │ │ │ └── hs071_f │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── hs071_f.f.in │ │ │ │ ├── install-sh │ │ │ │ ├── ipopt-uninstalled.pc.in │ │ │ │ ├── ipopt.pc.in │ │ │ │ ├── ltmain.sh │ │ │ │ ├── missing │ │ │ │ ├── src │ │ │ │ │ ├── Algorithm │ │ │ │ │ │ ├── Inexact │ │ │ │ │ │ │ ├── IpInexactAlgBuilder.cpp │ │ │ │ │ │ │ ├── IpInexactAlgBuilder.hpp │ │ │ │ │ │ │ ├── IpInexactCq.cpp │ │ │ │ │ │ │ ├── IpInexactCq.hpp │ │ │ │ │ │ │ ├── IpInexactData.cpp │ │ │ │ │ │ │ ├── IpInexactData.hpp │ │ │ │ │ │ │ ├── IpInexactDoglegNormal.cpp │ │ │ │ │ │ │ ├── IpInexactDoglegNormal.hpp │ │ │ │ │ │ │ ├── IpInexactLSAcceptor.cpp │ │ │ │ │ │ │ ├── IpInexactLSAcceptor.hpp │ │ │ │ │ │ │ ├── IpInexactNewtonNormal.cpp │ │ │ │ │ │ │ ├── IpInexactNewtonNormal.hpp │ │ │ │ │ │ │ ├── IpInexactNormalStepCalc.hpp │ │ │ │ │ │ │ ├── IpInexactNormalTerminationTester.cpp │ │ │ │ │ │ │ ├── IpInexactNormalTerminationTester.hpp │ │ │ │ │ │ │ ├── IpInexactPDSolver.cpp │ │ │ │ │ │ │ ├── IpInexactPDSolver.hpp │ │ │ │ │ │ │ ├── IpInexactPDTerminationTester.cpp │ │ │ │ │ │ │ ├── IpInexactPDTerminationTester.hpp │ │ │ │ │ │ │ ├── IpInexactRegOp.cpp │ │ │ │ │ │ │ ├── IpInexactRegOp.hpp │ │ │ │ │ │ │ ├── IpInexactSearchDirCalc.cpp │ │ │ │ │ │ │ ├── IpInexactSearchDirCalc.hpp │ │ │ │ │ │ │ ├── IpInexactTSymScalingMethod.cpp │ │ │ │ │ │ │ ├── IpInexactTSymScalingMethod.hpp │ │ │ │ │ │ │ ├── IpIterativePardisoSolverInterface.cpp │ │ │ │ │ │ │ ├── IpIterativePardisoSolverInterface.hpp │ │ │ │ │ │ │ ├── IpIterativeSolverTerminationTester.cpp │ │ │ │ │ │ │ ├── IpIterativeSolverTerminationTester.hpp │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ └── Makefile.in │ │ │ │ │ │ ├── IpAdaptiveMuUpdate.cpp │ │ │ │ │ │ ├── IpAdaptiveMuUpdate.hpp │ │ │ │ │ │ ├── IpAlgBuilder.cpp │ │ │ │ │ │ ├── IpAlgBuilder.hpp │ │ │ │ │ │ ├── IpAlgStrategy.hpp │ │ │ │ │ │ ├── IpAlgorithmRegOp.cpp │ │ │ │ │ │ ├── IpAlgorithmRegOp.hpp │ │ │ │ │ │ ├── IpAugRestoSystemSolver.cpp │ │ │ │ │ │ ├── IpAugRestoSystemSolver.hpp │ │ │ │ │ │ ├── IpAugSystemSolver.hpp │ │ │ │ │ │ ├── IpBacktrackingLSAcceptor.hpp │ │ │ │ │ │ ├── IpBacktrackingLineSearch.cpp │ │ │ │ │ │ ├── IpBacktrackingLineSearch.hpp │ │ │ │ │ │ ├── IpConvCheck.hpp │ │ │ │ │ │ ├── IpDefaultIterateInitializer.cpp │ │ │ │ │ │ ├── IpDefaultIterateInitializer.hpp │ │ │ │ │ │ ├── IpEqMultCalculator.hpp │ │ │ │ │ │ ├── IpEquilibrationScaling.cpp │ │ │ │ │ │ ├── IpEquilibrationScaling.hpp │ │ │ │ │ │ ├── IpExactHessianUpdater.cpp │ │ │ │ │ │ ├── IpExactHessianUpdater.hpp │ │ │ │ │ │ ├── IpFilter.cpp │ │ │ │ │ │ ├── IpFilter.hpp │ │ │ │ │ │ ├── IpFilterLSAcceptor.cpp │ │ │ │ │ │ ├── IpFilterLSAcceptor.hpp │ │ │ │ │ │ ├── IpGenAugSystemSolver.cpp │ │ │ │ │ │ ├── IpGenAugSystemSolver.hpp │ │ │ │ │ │ ├── IpGradientScaling.cpp │ │ │ │ │ │ ├── IpGradientScaling.hpp │ │ │ │ │ │ ├── IpHessianUpdater.hpp │ │ │ │ │ │ ├── IpIpoptAlg.cpp │ │ │ │ │ │ ├── IpIpoptAlg.hpp │ │ │ │ │ │ ├── IpIpoptCalculatedQuantities.cpp │ │ │ │ │ │ ├── IpIpoptCalculatedQuantities.hpp │ │ │ │ │ │ ├── IpIpoptData.cpp │ │ │ │ │ │ ├── IpIpoptData.hpp │ │ │ │ │ │ ├── IpIpoptNLP.hpp │ │ │ │ │ │ ├── IpIterateInitializer.hpp │ │ │ │ │ │ ├── IpIteratesVector.cpp │ │ │ │ │ │ ├── IpIteratesVector.hpp │ │ │ │ │ │ ├── IpIterationOutput.hpp │ │ │ │ │ │ ├── IpLeastSquareMults.cpp │ │ │ │ │ │ ├── IpLeastSquareMults.hpp │ │ │ │ │ │ ├── IpLimMemQuasiNewtonUpdater.cpp │ │ │ │ │ │ ├── IpLimMemQuasiNewtonUpdater.hpp │ │ │ │ │ │ ├── IpLineSearch.hpp │ │ │ │ │ │ ├── IpLoqoMuOracle.cpp │ │ │ │ │ │ ├── IpLoqoMuOracle.hpp │ │ │ │ │ │ ├── IpLowRankAugSystemSolver.cpp │ │ │ │ │ │ ├── IpLowRankAugSystemSolver.hpp │ │ │ │ │ │ ├── IpLowRankSSAugSystemSolver.cpp │ │ │ │ │ │ ├── IpLowRankSSAugSystemSolver.hpp │ │ │ │ │ │ ├── IpMonotoneMuUpdate.cpp │ │ │ │ │ │ ├── IpMonotoneMuUpdate.hpp │ │ │ │ │ │ ├── IpMuOracle.hpp │ │ │ │ │ │ ├── IpMuUpdate.hpp │ │ │ │ │ │ ├── IpNLPBoundsRemover.cpp │ │ │ │ │ │ ├── IpNLPBoundsRemover.hpp │ │ │ │ │ │ ├── IpNLPScaling.cpp │ │ │ │ │ │ ├── IpNLPScaling.hpp │ │ │ │ │ │ ├── IpOptErrorConvCheck.cpp │ │ │ │ │ │ ├── IpOptErrorConvCheck.hpp │ │ │ │ │ │ ├── IpOrigIpoptNLP.cpp │ │ │ │ │ │ ├── IpOrigIpoptNLP.hpp │ │ │ │ │ │ ├── IpOrigIterationOutput.cpp │ │ │ │ │ │ ├── IpOrigIterationOutput.hpp │ │ │ │ │ │ ├── IpPDFullSpaceSolver.cpp │ │ │ │ │ │ ├── IpPDFullSpaceSolver.hpp │ │ │ │ │ │ ├── IpPDPerturbationHandler.cpp │ │ │ │ │ │ ├── IpPDPerturbationHandler.hpp │ │ │ │ │ │ ├── IpPDSearchDirCalc.cpp │ │ │ │ │ │ ├── IpPDSearchDirCalc.hpp │ │ │ │ │ │ ├── IpPDSystemSolver.hpp │ │ │ │ │ │ ├── IpPenaltyLSAcceptor.cpp │ │ │ │ │ │ ├── IpPenaltyLSAcceptor.hpp │ │ │ │ │ │ ├── IpProbingMuOracle.cpp │ │ │ │ │ │ ├── IpProbingMuOracle.hpp │ │ │ │ │ │ ├── IpQualityFunctionMuOracle.cpp │ │ │ │ │ │ ├── IpQualityFunctionMuOracle.hpp │ │ │ │ │ │ ├── IpRestoConvCheck.cpp │ │ │ │ │ │ ├── IpRestoConvCheck.hpp │ │ │ │ │ │ ├── IpRestoFilterConvCheck.cpp │ │ │ │ │ │ ├── IpRestoFilterConvCheck.hpp │ │ │ │ │ │ ├── IpRestoIpoptNLP.cpp │ │ │ │ │ │ ├── IpRestoIpoptNLP.hpp │ │ │ │ │ │ ├── IpRestoIterateInitializer.cpp │ │ │ │ │ │ ├── IpRestoIterateInitializer.hpp │ │ │ │ │ │ ├── IpRestoIterationOutput.cpp │ │ │ │ │ │ ├── IpRestoIterationOutput.hpp │ │ │ │ │ │ ├── IpRestoMinC_1Nrm.cpp │ │ │ │ │ │ ├── IpRestoMinC_1Nrm.hpp │ │ │ │ │ │ ├── IpRestoPenaltyConvCheck.cpp │ │ │ │ │ │ ├── IpRestoPenaltyConvCheck.hpp │ │ │ │ │ │ ├── IpRestoPhase.hpp │ │ │ │ │ │ ├── IpRestoRestoPhase.cpp │ │ │ │ │ │ ├── IpRestoRestoPhase.hpp │ │ │ │ │ │ ├── IpSearchDirCalculator.hpp │ │ │ │ │ │ ├── IpStdAugSystemSolver.cpp │ │ │ │ │ │ ├── IpStdAugSystemSolver.hpp │ │ │ │ │ │ ├── IpTimingStatistics.cpp │ │ │ │ │ │ ├── IpTimingStatistics.hpp │ │ │ │ │ │ ├── IpUserScaling.cpp │ │ │ │ │ │ ├── IpUserScaling.hpp │ │ │ │ │ │ ├── IpWarmStartIterateInitializer.cpp │ │ │ │ │ │ ├── IpWarmStartIterateInitializer.hpp │ │ │ │ │ │ ├── LinearSolvers │ │ │ │ │ │ │ ├── IpGenKKTSolverInterface.hpp │ │ │ │ │ │ │ ├── IpIterativeWsmpSolverInterface.cpp │ │ │ │ │ │ │ ├── IpIterativeWsmpSolverInterface.hpp │ │ │ │ │ │ │ ├── IpLinearSolversRegOp.cpp │ │ │ │ │ │ │ ├── IpLinearSolversRegOp.hpp │ │ │ │ │ │ │ ├── IpMa27TSolverInterface.cpp │ │ │ │ │ │ │ ├── IpMa27TSolverInterface.hpp │ │ │ │ │ │ │ ├── IpMa28Partition.F │ │ │ │ │ │ │ ├── IpMa28TDependencyDetector.cpp │ │ │ │ │ │ │ ├── IpMa28TDependencyDetector.hpp │ │ │ │ │ │ │ ├── IpMa57TSolverInterface.cpp │ │ │ │ │ │ │ ├── IpMa57TSolverInterface.hpp │ │ │ │ │ │ │ ├── IpMa77SolverInterface.cpp │ │ │ │ │ │ │ ├── IpMa77SolverInterface.hpp │ │ │ │ │ │ │ ├── IpMa86SolverInterface.cpp │ │ │ │ │ │ │ ├── IpMa86SolverInterface.hpp │ │ │ │ │ │ │ ├── IpMa97SolverInterface.cpp │ │ │ │ │ │ │ ├── IpMa97SolverInterface.hpp │ │ │ │ │ │ │ ├── IpMc19TSymScalingMethod.cpp │ │ │ │ │ │ │ ├── IpMc19TSymScalingMethod.hpp │ │ │ │ │ │ │ ├── IpMumpsSolverInterface.cpp │ │ │ │ │ │ │ ├── IpMumpsSolverInterface.hpp │ │ │ │ │ │ │ ├── IpPardisoSolverInterface.cpp │ │ │ │ │ │ │ ├── IpPardisoSolverInterface.hpp │ │ │ │ │ │ │ ├── IpSlackBasedTSymScalingMethod.cpp │ │ │ │ │ │ │ ├── IpSlackBasedTSymScalingMethod.hpp │ │ │ │ │ │ │ ├── IpSparseSymLinearSolverInterface.hpp │ │ │ │ │ │ │ ├── IpSymLinearSolver.hpp │ │ │ │ │ │ │ ├── IpTDependencyDetector.hpp │ │ │ │ │ │ │ ├── IpTSymDependencyDetector.cpp │ │ │ │ │ │ │ ├── IpTSymDependencyDetector.hpp │ │ │ │ │ │ │ ├── IpTSymLinearSolver.cpp │ │ │ │ │ │ │ ├── IpTSymLinearSolver.hpp │ │ │ │ │ │ │ ├── IpTSymScalingMethod.hpp │ │ │ │ │ │ │ ├── IpTripletToCSRConverter.cpp │ │ │ │ │ │ │ ├── IpTripletToCSRConverter.hpp │ │ │ │ │ │ │ ├── IpWsmpSolverInterface.cpp │ │ │ │ │ │ │ ├── IpWsmpSolverInterface.hpp │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── hsl_ma77d.h │ │ │ │ │ │ │ ├── hsl_ma86d.h │ │ │ │ │ │ │ ├── hsl_ma97d.h │ │ │ │ │ │ │ └── hsl_mc68i.h │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ └── Makefile.in │ │ │ │ │ ├── Apps │ │ │ │ │ │ ├── AmplSolver │ │ │ │ │ │ │ ├── AmplTNLP.cpp │ │ │ │ │ │ │ ├── AmplTNLP.hpp │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── ampl_ipopt.cpp │ │ │ │ │ │ │ ├── ipoptamplinterface-uninstalled.pc.in │ │ │ │ │ │ │ └── ipoptamplinterface.pc.in │ │ │ │ │ │ ├── CUTErInterface │ │ │ │ │ │ │ ├── CUTErInterface.f │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── ipoma-dummy.f │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ └── Makefile.in │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── IpCachedResults.hpp │ │ │ │ │ │ ├── IpDebug.cpp │ │ │ │ │ │ ├── IpDebug.hpp │ │ │ │ │ │ ├── IpException.hpp │ │ │ │ │ │ ├── IpJournalist.cpp │ │ │ │ │ │ ├── IpJournalist.hpp │ │ │ │ │ │ ├── IpObserver.cpp │ │ │ │ │ │ ├── IpObserver.hpp │ │ │ │ │ │ ├── IpOptionsList.cpp │ │ │ │ │ │ ├── IpOptionsList.hpp │ │ │ │ │ │ ├── IpReferenced.hpp │ │ │ │ │ │ ├── IpRegOptions.cpp │ │ │ │ │ │ ├── IpRegOptions.hpp │ │ │ │ │ │ ├── IpSmartPtr.hpp │ │ │ │ │ │ ├── IpTaggedObject.cpp │ │ │ │ │ │ ├── IpTaggedObject.hpp │ │ │ │ │ │ ├── IpTimedTask.hpp │ │ │ │ │ │ ├── IpTypes.hpp │ │ │ │ │ │ ├── IpUtils.cpp │ │ │ │ │ │ ├── IpUtils.hpp │ │ │ │ │ │ ├── IpoptConfig.h │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── config.h.in │ │ │ │ │ │ ├── config_default.h │ │ │ │ │ │ ├── config_ipopt.h.in │ │ │ │ │ │ └── config_ipopt_default.h │ │ │ │ │ ├── Interfaces │ │ │ │ │ │ ├── IpAlgTypes.hpp │ │ │ │ │ │ ├── IpInterfacesRegOp.cpp │ │ │ │ │ │ ├── IpInterfacesRegOp.hpp │ │ │ │ │ │ ├── IpIpoptApplication.cpp │ │ │ │ │ │ ├── IpIpoptApplication.hpp │ │ │ │ │ │ ├── IpNLP.hpp │ │ │ │ │ │ ├── IpReturnCodes.h │ │ │ │ │ │ ├── IpReturnCodes.hpp │ │ │ │ │ │ ├── IpReturnCodes.inc │ │ │ │ │ │ ├── IpReturnCodes_inc.h │ │ │ │ │ │ ├── IpSolveStatistics.cpp │ │ │ │ │ │ ├── IpSolveStatistics.hpp │ │ │ │ │ │ ├── IpStdCInterface.cpp │ │ │ │ │ │ ├── IpStdCInterface.h │ │ │ │ │ │ ├── IpStdFInterface.c │ │ │ │ │ │ ├── IpStdInterfaceTNLP.cpp │ │ │ │ │ │ ├── IpStdInterfaceTNLP.hpp │ │ │ │ │ │ ├── IpTNLP.hpp │ │ │ │ │ │ ├── IpTNLPAdapter.cpp │ │ │ │ │ │ ├── IpTNLPAdapter.hpp │ │ │ │ │ │ ├── IpTNLPReducer.cpp │ │ │ │ │ │ ├── IpTNLPReducer.hpp │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ └── Makefile.in │ │ │ │ │ ├── LinAlg │ │ │ │ │ │ ├── IpBlas.cpp │ │ │ │ │ │ ├── IpBlas.hpp │ │ │ │ │ │ ├── IpCompoundMatrix.cpp │ │ │ │ │ │ ├── IpCompoundMatrix.hpp │ │ │ │ │ │ ├── IpCompoundSymMatrix.cpp │ │ │ │ │ │ ├── IpCompoundSymMatrix.hpp │ │ │ │ │ │ ├── IpCompoundVector.cpp │ │ │ │ │ │ ├── IpCompoundVector.hpp │ │ │ │ │ │ ├── IpDenseGenMatrix.cpp │ │ │ │ │ │ ├── IpDenseGenMatrix.hpp │ │ │ │ │ │ ├── IpDenseSymMatrix.cpp │ │ │ │ │ │ ├── IpDenseSymMatrix.hpp │ │ │ │ │ │ ├── IpDenseVector.cpp │ │ │ │ │ │ ├── IpDenseVector.hpp │ │ │ │ │ │ ├── IpDiagMatrix.cpp │ │ │ │ │ │ ├── IpDiagMatrix.hpp │ │ │ │ │ │ ├── IpExpandedMultiVectorMatrix.cpp │ │ │ │ │ │ ├── IpExpandedMultiVectorMatrix.hpp │ │ │ │ │ │ ├── IpExpansionMatrix.cpp │ │ │ │ │ │ ├── IpExpansionMatrix.hpp │ │ │ │ │ │ ├── IpIdentityMatrix.cpp │ │ │ │ │ │ ├── IpIdentityMatrix.hpp │ │ │ │ │ │ ├── IpLapack.cpp │ │ │ │ │ │ ├── IpLapack.hpp │ │ │ │ │ │ ├── IpLowRankUpdateSymMatrix.cpp │ │ │ │ │ │ ├── IpLowRankUpdateSymMatrix.hpp │ │ │ │ │ │ ├── IpMatrix.cpp │ │ │ │ │ │ ├── IpMatrix.hpp │ │ │ │ │ │ ├── IpMultiVectorMatrix.cpp │ │ │ │ │ │ ├── IpMultiVectorMatrix.hpp │ │ │ │ │ │ ├── IpScaledMatrix.cpp │ │ │ │ │ │ ├── IpScaledMatrix.hpp │ │ │ │ │ │ ├── IpSumMatrix.cpp │ │ │ │ │ │ ├── IpSumMatrix.hpp │ │ │ │ │ │ ├── IpSumSymMatrix.cpp │ │ │ │ │ │ ├── IpSumSymMatrix.hpp │ │ │ │ │ │ ├── IpSymMatrix.hpp │ │ │ │ │ │ ├── IpSymScaledMatrix.cpp │ │ │ │ │ │ ├── IpSymScaledMatrix.hpp │ │ │ │ │ │ ├── IpTransposeMatrix.cpp │ │ │ │ │ │ ├── IpTransposeMatrix.hpp │ │ │ │ │ │ ├── IpVector.cpp │ │ │ │ │ │ ├── IpVector.hpp │ │ │ │ │ │ ├── IpZeroMatrix.cpp │ │ │ │ │ │ ├── IpZeroMatrix.hpp │ │ │ │ │ │ ├── IpZeroSymMatrix.cpp │ │ │ │ │ │ ├── IpZeroSymMatrix.hpp │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── TMatrices │ │ │ │ │ │ │ ├── IpGenTMatrix.cpp │ │ │ │ │ │ │ ├── IpGenTMatrix.hpp │ │ │ │ │ │ │ ├── IpSymTMatrix.cpp │ │ │ │ │ │ │ ├── IpSymTMatrix.hpp │ │ │ │ │ │ │ ├── IpTripletHelper.cpp │ │ │ │ │ │ │ ├── IpTripletHelper.hpp │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ └── Makefile.in │ │ │ │ │ └── contrib │ │ │ │ │ │ ├── CGPenalty │ │ │ │ │ │ ├── IpCGPenaltyCq.cpp │ │ │ │ │ │ ├── IpCGPenaltyCq.hpp │ │ │ │ │ │ ├── IpCGPenaltyData.cpp │ │ │ │ │ │ ├── IpCGPenaltyData.hpp │ │ │ │ │ │ ├── IpCGPenaltyLSAcceptor.cpp │ │ │ │ │ │ ├── IpCGPenaltyLSAcceptor.hpp │ │ │ │ │ │ ├── IpCGPenaltyRegOp.cpp │ │ │ │ │ │ ├── IpCGPenaltyRegOp.hpp │ │ │ │ │ │ ├── IpCGPerturbationHandler.cpp │ │ │ │ │ │ ├── IpCGPerturbationHandler.hpp │ │ │ │ │ │ ├── IpCGSearchDirCalc.cpp │ │ │ │ │ │ ├── IpCGSearchDirCalc.hpp │ │ │ │ │ │ ├── IpPiecewisePenalty.cpp │ │ │ │ │ │ ├── IpPiecewisePenalty.hpp │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ └── Makefile.in │ │ │ │ │ │ └── LinearSolverLoader │ │ │ │ │ │ ├── HSLLoader.c │ │ │ │ │ │ ├── HSLLoader.h │ │ │ │ │ │ ├── LibraryHandler.c │ │ │ │ │ │ ├── LibraryHandler.h │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── PardisoLoader.c │ │ │ │ │ │ └── PardisoLoader.h │ │ │ │ ├── test │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── mytoy.nl │ │ │ │ │ └── run_unitTests.in │ │ │ │ └── tutorial │ │ │ │ │ ├── AmplExperiments │ │ │ │ │ ├── MoreAmplModels.txt │ │ │ │ │ ├── car1.gp │ │ │ │ │ ├── car1.run │ │ │ │ │ ├── hs71.mod │ │ │ │ │ └── infeasible.mod │ │ │ │ │ ├── CodingExercise │ │ │ │ │ ├── C │ │ │ │ │ │ ├── 1-skeleton │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── TutorialC.c │ │ │ │ │ │ ├── 2-mistake │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── TutorialC.c │ │ │ │ │ │ └── 3-solution │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── TutorialC.c │ │ │ │ │ ├── Cpp │ │ │ │ │ │ ├── 1-skeleton │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── TutorialCpp_main.cpp │ │ │ │ │ │ │ ├── TutorialCpp_nlp.cpp │ │ │ │ │ │ │ └── TutorialCpp_nlp.hpp │ │ │ │ │ │ ├── 2-mistake │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── TutorialCpp_main.cpp │ │ │ │ │ │ │ ├── TutorialCpp_nlp.cpp │ │ │ │ │ │ │ └── TutorialCpp_nlp.hpp │ │ │ │ │ │ └── 3-solution │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── TutorialCpp_main.cpp │ │ │ │ │ │ │ ├── TutorialCpp_nlp.cpp │ │ │ │ │ │ │ └── TutorialCpp_nlp.hpp │ │ │ │ │ ├── Fortran │ │ │ │ │ │ ├── 1-skeleton │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── TutorialFortran.f.in │ │ │ │ │ │ ├── 2-mistake │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── TutorialFortran.f.in │ │ │ │ │ │ └── 3-solution │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── TutorialFortran.f.in │ │ │ │ │ ├── Matlab │ │ │ │ │ │ ├── 1-skeleton │ │ │ │ │ │ │ ├── TutorialMatlab.m │ │ │ │ │ │ │ └── startup.m.in │ │ │ │ │ │ ├── 2-mistake │ │ │ │ │ │ │ ├── TutorialMatlab.m │ │ │ │ │ │ │ └── startup.m.in │ │ │ │ │ │ └── 3-solution │ │ │ │ │ │ │ ├── TutorialMatlab.m │ │ │ │ │ │ │ └── startup.m.in │ │ │ │ │ └── exercise_example.mod │ │ │ │ │ └── Modeling │ │ │ │ │ ├── bad1-fix1.mod │ │ │ │ │ ├── bad1-fix2.mod │ │ │ │ │ └── bad1.mod │ │ │ ├── LICENSE │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── ThirdParty │ │ │ │ ├── ASL │ │ │ │ │ ├── INSTALL.ASL │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── coinasl-uninstalled.pc.in │ │ │ │ │ ├── coinasl.pc.in │ │ │ │ │ ├── compile_MS_ASL.in │ │ │ │ │ ├── compile_Unix_ASL.in │ │ │ │ │ ├── config.guess │ │ │ │ │ ├── config.sub │ │ │ │ │ ├── configure │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── depcomp │ │ │ │ │ ├── get.ASL │ │ │ │ │ ├── install-sh │ │ │ │ │ ├── ltmain.sh │ │ │ │ │ ├── mingw.patch │ │ │ │ │ ├── missing │ │ │ │ │ └── solvers │ │ │ │ │ │ ├── .cache │ │ │ │ │ │ ├── .cache+ │ │ │ │ │ │ ├── .depend │ │ │ │ │ │ ├── 00lastchange │ │ │ │ │ │ ├── MD5 │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── README.SGI │ │ │ │ │ │ ├── README.f77 │ │ │ │ │ │ ├── README.suf │ │ │ │ │ │ ├── amplsolv.lbc │ │ │ │ │ │ ├── amplsolv.sy │ │ │ │ │ │ ├── arith.h0 │ │ │ │ │ │ ├── arith.ibm │ │ │ │ │ │ ├── arithchk.c │ │ │ │ │ │ ├── asl.h │ │ │ │ │ │ ├── asl_pfg.h │ │ │ │ │ │ ├── asl_pfgh.h │ │ │ │ │ │ ├── asldate.c │ │ │ │ │ │ ├── atof.c │ │ │ │ │ │ ├── auxinfo.c │ │ │ │ │ │ ├── avltree.c │ │ │ │ │ │ ├── avltree.h │ │ │ │ │ │ ├── b_search.c │ │ │ │ │ │ ├── basename.c │ │ │ │ │ │ ├── bpmpd │ │ │ │ │ │ ├── .depend │ │ │ │ │ │ ├── MD5 │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── changes │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── xsum0.out │ │ │ │ │ │ ├── bscanf.c │ │ │ │ │ │ ├── changes │ │ │ │ │ │ ├── com2eval.c │ │ │ │ │ │ ├── comeval.c │ │ │ │ │ │ ├── comptry.bat │ │ │ │ │ │ ├── con1ival.c │ │ │ │ │ │ ├── con2ival.c │ │ │ │ │ │ ├── con2val.c │ │ │ │ │ │ ├── conadj.c │ │ │ │ │ │ ├── configure │ │ │ │ │ │ ├── configurehere │ │ │ │ │ │ ├── conpval.c │ │ │ │ │ │ ├── conscale.c │ │ │ │ │ │ ├── conval.c │ │ │ │ │ │ ├── cplex │ │ │ │ │ │ ├── .depend │ │ │ │ │ │ ├── 00lastchange │ │ │ │ │ │ ├── 3.0 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── MD5 │ │ │ │ │ │ ├── README.1st │ │ │ │ │ │ ├── README.cplex │ │ │ │ │ │ ├── ampl110.pdf │ │ │ │ │ │ ├── changes │ │ │ │ │ │ ├── configure │ │ │ │ │ │ ├── configurehere │ │ │ │ │ │ ├── cplex.c │ │ │ │ │ │ ├── cplex4.c │ │ │ │ │ │ ├── cplex60.c │ │ │ │ │ │ ├── cplex66.c │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── makefile.mingw │ │ │ │ │ │ ├── makefile.u │ │ │ │ │ │ ├── makefile.vc │ │ │ │ │ │ ├── version4.c │ │ │ │ │ │ ├── version60.c │ │ │ │ │ │ ├── version66.c │ │ │ │ │ │ └── xsum0.out │ │ │ │ │ │ ├── derprop.c │ │ │ │ │ │ ├── details.c0 │ │ │ │ │ │ ├── donlp2 │ │ │ │ │ │ ├── .depend │ │ │ │ │ │ ├── 00lastchange │ │ │ │ │ │ ├── MD5 │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── changes │ │ │ │ │ │ ├── donlp.c │ │ │ │ │ │ ├── donlpver.c0 │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── makefile.u │ │ │ │ │ │ ├── makefile.vc │ │ │ │ │ │ ├── setup1.f │ │ │ │ │ │ └── xsum0.out │ │ │ │ │ │ ├── dtoa.c │ │ │ │ │ │ ├── dtoa1.c │ │ │ │ │ │ ├── duthes.c │ │ │ │ │ │ ├── dvalue.hd │ │ │ │ │ │ ├── dynlink.c │ │ │ │ │ │ ├── errchk.h │ │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── .depend │ │ │ │ │ │ ├── 00lastchange │ │ │ │ │ │ ├── MD5 │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── README.gjh │ │ │ │ │ │ ├── amplfun4.c │ │ │ │ │ │ ├── amplfunc.c │ │ │ │ │ │ ├── ch3.amp │ │ │ │ │ │ ├── ch3.nl │ │ │ │ │ │ ├── ch3mng.out │ │ │ │ │ │ ├── ch3mng.sol │ │ │ │ │ │ ├── ch3mnh.out │ │ │ │ │ │ ├── ch3mnh.sol │ │ │ │ │ │ ├── ch3nl2.out │ │ │ │ │ │ ├── ch3nl2.sol │ │ │ │ │ │ ├── ch3nl21.out │ │ │ │ │ │ ├── ch3qtest.out │ │ │ │ │ │ ├── ch3tn.out │ │ │ │ │ │ ├── ch3tn.sol │ │ │ │ │ │ ├── changes │ │ │ │ │ │ ├── diet.amp │ │ │ │ │ │ ├── diet.col │ │ │ │ │ │ ├── diet.nl │ │ │ │ │ │ ├── diet.row │ │ │ │ │ │ ├── diet.sol │ │ │ │ │ │ ├── dietd.nl │ │ │ │ │ │ ├── dietd.sol │ │ │ │ │ │ ├── dietl1.out │ │ │ │ │ │ ├── dietl2.out │ │ │ │ │ │ ├── dietl3.out │ │ │ │ │ │ ├── dietu.sol │ │ │ │ │ │ ├── dminos │ │ │ │ │ │ ├── dualconv.c │ │ │ │ │ │ ├── enewt.m │ │ │ │ │ │ ├── evalchk.c │ │ │ │ │ │ ├── evalf.m │ │ │ │ │ │ ├── evalg.m │ │ │ │ │ │ ├── evalw.m │ │ │ │ │ │ ├── fmng1.f │ │ │ │ │ │ ├── fnl21.f │ │ │ │ │ │ ├── gjh.c │ │ │ │ │ │ ├── hist.c │ │ │ │ │ │ ├── hkeywds.c │ │ │ │ │ │ ├── hs100.amp │ │ │ │ │ │ ├── hs100.nl │ │ │ │ │ │ ├── hs100.so0 │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── init.m │ │ │ │ │ │ ├── keywds.c │ │ │ │ │ │ ├── lin1.c │ │ │ │ │ │ ├── lin1diet.out │ │ │ │ │ │ ├── lin2.c │ │ │ │ │ │ ├── lin2diet.out │ │ │ │ │ │ ├── lin3.c │ │ │ │ │ │ ├── lin3diet.out │ │ │ │ │ │ ├── linrc.c │ │ │ │ │ │ ├── linrcdie.out │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── makefile.sy │ │ │ │ │ │ ├── makefile.u │ │ │ │ │ │ ├── makefile.vc │ │ │ │ │ │ ├── makefile.wat │ │ │ │ │ │ ├── mng.c │ │ │ │ │ │ ├── mng1.c │ │ │ │ │ │ ├── mnh.c │ │ │ │ │ │ ├── nl2.c │ │ │ │ │ │ ├── nl21.c │ │ │ │ │ │ ├── nlcopy.c │ │ │ │ │ │ ├── qtest.c │ │ │ │ │ │ ├── rvmsg.c │ │ │ │ │ │ ├── rvmsg.h │ │ │ │ │ │ ├── savesol.m │ │ │ │ │ │ ├── spamfun4.c │ │ │ │ │ │ ├── spamfunc.c │ │ │ │ │ │ ├── tnmain.c │ │ │ │ │ │ ├── v8.c │ │ │ │ │ │ ├── v8ch3.out │ │ │ │ │ │ ├── ve08.c │ │ │ │ │ │ ├── ve08ch3.out │ │ │ │ │ │ └── xsum0.out │ │ │ │ │ │ ├── f_read.c │ │ │ │ │ │ ├── fg_read.c │ │ │ │ │ │ ├── fg_write.c │ │ │ │ │ │ ├── fgh_read.c │ │ │ │ │ │ ├── float.h0 │ │ │ │ │ │ ├── fpecatch.c │ │ │ │ │ │ ├── fpinit.c │ │ │ │ │ │ ├── fpinitmt.c │ │ │ │ │ │ ├── fpsetprec.s │ │ │ │ │ │ ├── fpsetprec64.s │ │ │ │ │ │ ├── fsqp │ │ │ │ │ │ ├── .depend │ │ │ │ │ │ ├── 00lastchange │ │ │ │ │ │ ├── MD5 │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── changes │ │ │ │ │ │ ├── fsqp.c │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── version.c │ │ │ │ │ │ └── xsum0.out │ │ │ │ │ │ ├── fullhes.c │ │ │ │ │ │ ├── func_add.c │ │ │ │ │ │ ├── funcadd.c │ │ │ │ │ │ ├── funcadd.h │ │ │ │ │ │ ├── funcadd0.c │ │ │ │ │ │ ├── funcadd1.c │ │ │ │ │ │ ├── funcaddk.c │ │ │ │ │ │ ├── funcaddr.c │ │ │ │ │ │ ├── funclink │ │ │ │ │ │ ├── .depend │ │ │ │ │ │ ├── 00lastchange │ │ │ │ │ │ ├── MD5 │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── amplfunc.def │ │ │ │ │ │ ├── amplfunc.lnk │ │ │ │ │ │ ├── changes │ │ │ │ │ │ ├── funcadd.c │ │ │ │ │ │ ├── funcadd0.c │ │ │ │ │ │ ├── funcaddk.c │ │ │ │ │ │ ├── funcout.exp │ │ │ │ │ │ ├── htest.out │ │ │ │ │ │ ├── htest.x │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── libmain.c │ │ │ │ │ │ ├── makefile.alpha │ │ │ │ │ │ ├── makefile.cygwin │ │ │ │ │ │ ├── makefile.freebsd │ │ │ │ │ │ ├── makefile.hp │ │ │ │ │ │ ├── makefile.i386solaris │ │ │ │ │ │ ├── makefile.krsolaris │ │ │ │ │ │ ├── makefile.lcc │ │ │ │ │ │ ├── makefile.linux │ │ │ │ │ │ ├── makefile.macosx │ │ │ │ │ │ ├── makefile.rs6k │ │ │ │ │ │ ├── makefile.sgi │ │ │ │ │ │ ├── makefile.solaris │ │ │ │ │ │ ├── makefile.sunos │ │ │ │ │ │ ├── makefile.vc │ │ │ │ │ │ ├── makefile.wat │ │ │ │ │ │ ├── makefile.xsum │ │ │ │ │ │ ├── outargex.c │ │ │ │ │ │ ├── outargex.run │ │ │ │ │ │ ├── silly.2 │ │ │ │ │ │ ├── silly.out │ │ │ │ │ │ ├── silly.x │ │ │ │ │ │ └── xsum0.out │ │ │ │ │ │ ├── g_fmt.c │ │ │ │ │ │ ├── genrowno.c │ │ │ │ │ │ ├── getenv.c │ │ │ │ │ │ ├── getstub.c │ │ │ │ │ │ ├── getstub.h │ │ │ │ │ │ ├── gurobi │ │ │ │ │ │ ├── .depend │ │ │ │ │ │ ├── 00lastchange │ │ │ │ │ │ ├── MD5 │ │ │ │ │ │ ├── README.1st │ │ │ │ │ │ ├── README.gurobi │ │ │ │ │ │ ├── changes │ │ │ │ │ │ ├── gurobi.c │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── makefile.u │ │ │ │ │ │ ├── makefile.vc │ │ │ │ │ │ └── xsum0.out │ │ │ │ │ │ ├── htcl.c │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── indic_cons.c │ │ │ │ │ │ ├── jac0dim.c │ │ │ │ │ │ ├── jac2dim.c │ │ │ │ │ │ ├── jac2dim.h │ │ │ │ │ │ ├── jacdim.c │ │ │ │ │ │ ├── jacinc.c │ │ │ │ │ │ ├── jacinc1.c │ │ │ │ │ │ ├── jacpdim.h │ │ │ │ │ │ ├── korbx │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── lancelot │ │ │ │ │ │ ├── .depend │ │ │ │ │ │ ├── 00lastchange │ │ │ │ │ │ ├── MD5 │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── changes │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── lancelot.c │ │ │ │ │ │ ├── makefile.u │ │ │ │ │ │ └── xsum0.out │ │ │ │ │ │ ├── lbfgsb │ │ │ │ │ │ ├── .depend │ │ │ │ │ │ ├── 00lastchange │ │ │ │ │ │ ├── MD5 │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── changes │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── lbfgsb.c │ │ │ │ │ │ ├── makefile.u │ │ │ │ │ │ ├── makefile.vc │ │ │ │ │ │ └── xsum0.out │ │ │ │ │ │ ├── libnamsave.c │ │ │ │ │ │ ├── loqo │ │ │ │ │ │ ├── .depend │ │ │ │ │ │ ├── 00lastchange │ │ │ │ │ │ ├── MD5 │ │ │ │ │ │ ├── README.1st │ │ │ │ │ │ ├── README.loqo │ │ │ │ │ │ ├── aloqo.c │ │ │ │ │ │ ├── changes │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── makefile.u │ │ │ │ │ │ ├── makefile.vc │ │ │ │ │ │ └── xsum0.out │ │ │ │ │ │ ├── lpsolve │ │ │ │ │ │ ├── .depend │ │ │ │ │ │ ├── 00lastchange │ │ │ │ │ │ ├── MD5 │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── changes │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── lp_solve_4.0.tar.gz │ │ │ │ │ │ ├── lpsolve.c │ │ │ │ │ │ ├── lpsolve4.c │ │ │ │ │ │ ├── lpsolve5.c │ │ │ │ │ │ ├── lpsolve5_date.h │ │ │ │ │ │ ├── makefile.u │ │ │ │ │ │ ├── makefile.vc │ │ │ │ │ │ ├── makefile4.u │ │ │ │ │ │ ├── makefile4.vc │ │ │ │ │ │ └── xsum0.out │ │ │ │ │ │ ├── mach.c │ │ │ │ │ │ ├── mainexit.c │ │ │ │ │ │ ├── makefile.lc │ │ │ │ │ │ ├── makefile.sy │ │ │ │ │ │ ├── makefile.u │ │ │ │ │ │ ├── makefile.u.orig │ │ │ │ │ │ ├── makefile.vc │ │ │ │ │ │ ├── makefile.wat │ │ │ │ │ │ ├── minos │ │ │ │ │ │ ├── .depend │ │ │ │ │ │ ├── 00lastchange │ │ │ │ │ │ ├── MD5 │ │ │ │ │ │ ├── README.1st │ │ │ │ │ │ ├── README.minos │ │ │ │ │ │ ├── changes │ │ │ │ │ │ ├── configure │ │ │ │ │ │ ├── configurehere │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── m551.c │ │ │ │ │ │ ├── makefile.u │ │ │ │ │ │ ├── makefile.vc │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── MD5 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── xsum0.out │ │ │ │ │ │ ├── mip_pri.c │ │ │ │ │ │ ├── misc.c │ │ │ │ │ │ ├── mpec_adj.c │ │ │ │ │ │ ├── mpec_adj0.c │ │ │ │ │ │ ├── mypow.c │ │ │ │ │ │ ├── names.c │ │ │ │ │ │ ├── nl_obj.c │ │ │ │ │ │ ├── nlc │ │ │ │ │ │ ├── .depend │ │ │ │ │ │ ├── 00lastchange │ │ │ │ │ │ ├── MD5 │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── c_op.hd │ │ │ │ │ │ ├── ch3.amp │ │ │ │ │ │ ├── ch3.c │ │ │ │ │ │ ├── ch3.f │ │ │ │ │ │ ├── ch3.kc │ │ │ │ │ │ ├── ch3.nl │ │ │ │ │ │ ├── ch3mng.out │ │ │ │ │ │ ├── ch3nl2.out │ │ │ │ │ │ ├── changes │ │ │ │ │ │ ├── cops.c │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── makefile.u │ │ │ │ │ │ ├── makefile.vc │ │ │ │ │ │ ├── mngnlc.c │ │ │ │ │ │ ├── nl2nlc.c │ │ │ │ │ │ ├── nlc.c │ │ │ │ │ │ ├── nlc.h │ │ │ │ │ │ ├── nlcmisc.c │ │ │ │ │ │ ├── opcode.hd │ │ │ │ │ │ ├── r_ops1.hd │ │ │ │ │ │ └── xsum0.out │ │ │ │ │ │ ├── nlp.h │ │ │ │ │ │ ├── nlp2.h │ │ │ │ │ │ ├── npopt │ │ │ │ │ │ ├── .depend │ │ │ │ │ │ ├── MD5 │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── changes │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── npopt.c │ │ │ │ │ │ ├── version.c │ │ │ │ │ │ └── xsum0.out │ │ │ │ │ │ ├── npsol │ │ │ │ │ │ ├── .depend │ │ │ │ │ │ ├── 00lastchange │ │ │ │ │ │ ├── MD5 │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── changes │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── makefile.u │ │ │ │ │ │ ├── makefile.vc │ │ │ │ │ │ ├── npsol.c │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── MD5 │ │ │ │ │ │ │ ├── index │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── makefile.vc │ │ │ │ │ │ │ └── npsol.lbc │ │ │ │ │ │ ├── version.c │ │ │ │ │ │ └── xsum0.out │ │ │ │ │ │ ├── nqpcheck.c │ │ │ │ │ │ ├── obj2val.c │ │ │ │ │ │ ├── obj_adj.c │ │ │ │ │ │ ├── obj_adj.h │ │ │ │ │ │ ├── obj_adj0.c │ │ │ │ │ │ ├── obj_prec.c │ │ │ │ │ │ ├── objconst.c │ │ │ │ │ │ ├── objval.c │ │ │ │ │ │ ├── objval_.c │ │ │ │ │ │ ├── op_type.c │ │ │ │ │ │ ├── op_type.hd │ │ │ │ │ │ ├── op_typeb.hd │ │ │ │ │ │ ├── opcode.hd │ │ │ │ │ │ ├── opnos.hd │ │ │ │ │ │ ├── osl │ │ │ │ │ │ ├── .depend │ │ │ │ │ │ ├── 00lastchange │ │ │ │ │ │ ├── MD5 │ │ │ │ │ │ ├── README.1st │ │ │ │ │ │ ├── README.osl │ │ │ │ │ │ ├── changes │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── makefile.u │ │ │ │ │ │ ├── makefile.vc │ │ │ │ │ │ ├── makefile.wat │ │ │ │ │ │ ├── osl.c │ │ │ │ │ │ ├── osl.h │ │ │ │ │ │ ├── osl1.2 │ │ │ │ │ │ │ ├── MD5 │ │ │ │ │ │ │ ├── README.1st │ │ │ │ │ │ │ ├── README.osl │ │ │ │ │ │ │ ├── ftncls.f │ │ │ │ │ │ │ ├── ftnopn.f │ │ │ │ │ │ │ ├── index │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ ├── osl.c │ │ │ │ │ │ │ ├── osl.h │ │ │ │ │ │ │ ├── version.c │ │ │ │ │ │ │ └── xsum0.out │ │ │ │ │ │ ├── version.c0 │ │ │ │ │ │ └── xsum0.out │ │ │ │ │ │ ├── path │ │ │ │ │ │ ├── .depend │ │ │ │ │ │ ├── 00lastchange │ │ │ │ │ │ ├── MD5 │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── changes │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── makefile.u │ │ │ │ │ │ ├── makefile.vc │ │ │ │ │ │ ├── path.c │ │ │ │ │ │ ├── path44.c │ │ │ │ │ │ └── xsum0.out │ │ │ │ │ │ ├── pfg_read.c │ │ │ │ │ │ ├── pfghread.c │ │ │ │ │ │ ├── printf.c │ │ │ │ │ │ ├── pshvprod.c │ │ │ │ │ │ ├── psinfo.h │ │ │ │ │ │ ├── punknown.c │ │ │ │ │ │ ├── qp_read.c │ │ │ │ │ │ ├── qpcheck.c │ │ │ │ │ │ ├── qsortv.c │ │ │ │ │ │ ├── r_op.hd │ │ │ │ │ │ ├── r_opn.hd │ │ │ │ │ │ ├── r_opn0.hd │ │ │ │ │ │ ├── r_qp.hd │ │ │ │ │ │ ├── readsol.c │ │ │ │ │ │ ├── repwhere.c │ │ │ │ │ │ ├── rnd_prod.s │ │ │ │ │ │ ├── rops.c │ │ │ │ │ │ ├── rops2.c │ │ │ │ │ │ ├── sigcatch.c │ │ │ │ │ │ ├── sjac0dim.c │ │ │ │ │ │ ├── snopt │ │ │ │ │ │ ├── .depend │ │ │ │ │ │ ├── 00lastchange │ │ │ │ │ │ ├── MD5 │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── changes │ │ │ │ │ │ ├── configure │ │ │ │ │ │ ├── configurehere │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── makefile.u │ │ │ │ │ │ ├── makefile.vc │ │ │ │ │ │ ├── snopt.c │ │ │ │ │ │ ├── snopt_.c │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── MD5 │ │ │ │ │ │ │ ├── index │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── makefile.fu │ │ │ │ │ │ │ ├── makefile.u │ │ │ │ │ │ │ ├── makefile.vc │ │ │ │ │ │ │ └── snopt.lbc │ │ │ │ │ │ └── xsum0.out │ │ │ │ │ │ ├── sos_add.c │ │ │ │ │ │ ├── sphes.c │ │ │ │ │ │ ├── sprintf.c │ │ │ │ │ │ ├── sscanf.c │ │ │ │ │ │ ├── stderr.c │ │ │ │ │ │ ├── stdio1.h0 │ │ │ │ │ │ ├── strerror.c │ │ │ │ │ │ ├── studchk0.c │ │ │ │ │ │ ├── suf_sos.c │ │ │ │ │ │ ├── value.c │ │ │ │ │ │ ├── writesol.c │ │ │ │ │ │ ├── wrtsol_.c │ │ │ │ │ │ ├── ws_desc.c │ │ │ │ │ │ ├── wsu_desc.c │ │ │ │ │ │ ├── x2check.c │ │ │ │ │ │ ├── xectim.c │ │ │ │ │ │ ├── xp1known.c │ │ │ │ │ │ ├── xp2known.c │ │ │ │ │ │ ├── xpress │ │ │ │ │ │ ├── .depend │ │ │ │ │ │ ├── .list │ │ │ │ │ │ ├── 00lastchange │ │ │ │ │ │ ├── MD5 │ │ │ │ │ │ ├── README.1st │ │ │ │ │ │ ├── README.xpress │ │ │ │ │ │ ├── changes │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── makefile.u │ │ │ │ │ │ ├── makefile.vc │ │ │ │ │ │ ├── xpress.c │ │ │ │ │ │ ├── xpress.linux │ │ │ │ │ │ ├── xpress.macosx │ │ │ │ │ │ └── xsum0.out │ │ │ │ │ │ └── xsum0.out │ │ │ │ ├── Blas │ │ │ │ │ ├── INSTALL.BLAS │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── caxpy.f │ │ │ │ │ ├── ccopy.f │ │ │ │ │ ├── cdotc.f │ │ │ │ │ ├── cdotu.f │ │ │ │ │ ├── cgbmv.f │ │ │ │ │ ├── cgemm.f │ │ │ │ │ ├── cgemv.f │ │ │ │ │ ├── cgerc.f │ │ │ │ │ ├── cgeru.f │ │ │ │ │ ├── chbmv.f │ │ │ │ │ ├── chemm.f │ │ │ │ │ ├── chemv.f │ │ │ │ │ ├── cher.f │ │ │ │ │ ├── cher2.f │ │ │ │ │ ├── cher2k.f │ │ │ │ │ ├── cherk.f │ │ │ │ │ ├── chpmv.f │ │ │ │ │ ├── chpr.f │ │ │ │ │ ├── chpr2.f │ │ │ │ │ ├── coinblas-uninstalled.pc.in │ │ │ │ │ ├── coinblas.pc.in │ │ │ │ │ ├── config.guess │ │ │ │ │ ├── config.sub │ │ │ │ │ ├── configure │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── crotg.f │ │ │ │ │ ├── cscal.f │ │ │ │ │ ├── csrot.f │ │ │ │ │ ├── csscal.f │ │ │ │ │ ├── cswap.f │ │ │ │ │ ├── csymm.f │ │ │ │ │ ├── csyr2k.f │ │ │ │ │ ├── csyrk.f │ │ │ │ │ ├── ctbmv.f │ │ │ │ │ ├── ctbsv.f │ │ │ │ │ ├── ctpmv.f │ │ │ │ │ ├── ctpsv.f │ │ │ │ │ ├── ctrmm.f │ │ │ │ │ ├── ctrmv.f │ │ │ │ │ ├── ctrsm.f │ │ │ │ │ ├── ctrsv.f │ │ │ │ │ ├── dasum.f │ │ │ │ │ ├── daxpy.f │ │ │ │ │ ├── dcabs1.f │ │ │ │ │ ├── dcopy.f │ │ │ │ │ ├── ddot.f │ │ │ │ │ ├── depcomp │ │ │ │ │ ├── dgbmv.f │ │ │ │ │ ├── dgemm.f │ │ │ │ │ ├── dgemv.f │ │ │ │ │ ├── dger.f │ │ │ │ │ ├── dnrm2.f │ │ │ │ │ ├── drot.f │ │ │ │ │ ├── drotg.f │ │ │ │ │ ├── drotm.f │ │ │ │ │ ├── drotmg.f │ │ │ │ │ ├── dsbmv.f │ │ │ │ │ ├── dscal.f │ │ │ │ │ ├── dsdot.f │ │ │ │ │ ├── dspmv.f │ │ │ │ │ ├── dspr.f │ │ │ │ │ ├── dspr2.f │ │ │ │ │ ├── dswap.f │ │ │ │ │ ├── dsymm.f │ │ │ │ │ ├── dsymv.f │ │ │ │ │ ├── dsyr.f │ │ │ │ │ ├── dsyr2.f │ │ │ │ │ ├── dsyr2k.f │ │ │ │ │ ├── dsyrk.f │ │ │ │ │ ├── dtbmv.f │ │ │ │ │ ├── dtbsv.f │ │ │ │ │ ├── dtpmv.f │ │ │ │ │ ├── dtpsv.f │ │ │ │ │ ├── dtrmm.f │ │ │ │ │ ├── dtrmv.f │ │ │ │ │ ├── dtrsm.f │ │ │ │ │ ├── dtrsv.f │ │ │ │ │ ├── dzasum.f │ │ │ │ │ ├── dznrm2.f │ │ │ │ │ ├── get.Blas │ │ │ │ │ ├── icamax.f │ │ │ │ │ ├── idamax.f │ │ │ │ │ ├── install-sh │ │ │ │ │ ├── isamax.f │ │ │ │ │ ├── izamax.f │ │ │ │ │ ├── lsame.f │ │ │ │ │ ├── ltmain.sh │ │ │ │ │ ├── missing │ │ │ │ │ ├── sasum.f │ │ │ │ │ ├── saxpy.f │ │ │ │ │ ├── scabs1.f │ │ │ │ │ ├── scasum.f │ │ │ │ │ ├── scnrm2.f │ │ │ │ │ ├── scopy.f │ │ │ │ │ ├── sdot.f │ │ │ │ │ ├── sdsdot.f │ │ │ │ │ ├── sgbmv.f │ │ │ │ │ ├── sgemm.f │ │ │ │ │ ├── sgemv.f │ │ │ │ │ ├── sger.f │ │ │ │ │ ├── snrm2.f │ │ │ │ │ ├── srot.f │ │ │ │ │ ├── srotg.f │ │ │ │ │ ├── srotm.f │ │ │ │ │ ├── srotmg.f │ │ │ │ │ ├── ssbmv.f │ │ │ │ │ ├── sscal.f │ │ │ │ │ ├── sspmv.f │ │ │ │ │ ├── sspr.f │ │ │ │ │ ├── sspr2.f │ │ │ │ │ ├── sswap.f │ │ │ │ │ ├── ssymm.f │ │ │ │ │ ├── ssymv.f │ │ │ │ │ ├── ssyr.f │ │ │ │ │ ├── ssyr2.f │ │ │ │ │ ├── ssyr2k.f │ │ │ │ │ ├── ssyrk.f │ │ │ │ │ ├── stbmv.f │ │ │ │ │ ├── stbsv.f │ │ │ │ │ ├── stpmv.f │ │ │ │ │ ├── stpsv.f │ │ │ │ │ ├── strmm.f │ │ │ │ │ ├── strmv.f │ │ │ │ │ ├── strsm.f │ │ │ │ │ ├── strsv.f │ │ │ │ │ ├── xerbla.f │ │ │ │ │ ├── zaxpy.f │ │ │ │ │ ├── zcopy.f │ │ │ │ │ ├── zdotc.f │ │ │ │ │ ├── zdotu.f │ │ │ │ │ ├── zdrot.f │ │ │ │ │ ├── zdscal.f │ │ │ │ │ ├── zgbmv.f │ │ │ │ │ ├── zgemm.f │ │ │ │ │ ├── zgemv.f │ │ │ │ │ ├── zgerc.f │ │ │ │ │ ├── zgeru.f │ │ │ │ │ ├── zhbmv.f │ │ │ │ │ ├── zhemm.f │ │ │ │ │ ├── zhemv.f │ │ │ │ │ ├── zher.f │ │ │ │ │ ├── zher2.f │ │ │ │ │ ├── zher2k.f │ │ │ │ │ ├── zherk.f │ │ │ │ │ ├── zhpmv.f │ │ │ │ │ ├── zhpr.f │ │ │ │ │ ├── zhpr2.f │ │ │ │ │ ├── zrotg.f │ │ │ │ │ ├── zscal.f │ │ │ │ │ ├── zswap.f │ │ │ │ │ ├── zsymm.f │ │ │ │ │ ├── zsyr2k.f │ │ │ │ │ ├── zsyrk.f │ │ │ │ │ ├── ztbmv.f │ │ │ │ │ ├── ztbsv.f │ │ │ │ │ ├── ztpmv.f │ │ │ │ │ ├── ztpsv.f │ │ │ │ │ ├── ztrmm.f │ │ │ │ │ ├── ztrmv.f │ │ │ │ │ ├── ztrsm.f │ │ │ │ │ └── ztrsv.f │ │ │ │ ├── HSL │ │ │ │ │ ├── CoinHslConfig.h │ │ │ │ │ ├── INSTALL.HSL │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── coinhsl-uninstalled.pc.in │ │ │ │ │ ├── coinhsl.pc.in │ │ │ │ │ ├── coinhsl │ │ │ │ │ │ ├── ChangeLog │ │ │ │ │ │ ├── CoinHslConfig.h │ │ │ │ │ │ ├── CoinHslConfig.h.in │ │ │ │ │ │ ├── INSTALL │ │ │ │ │ │ ├── LICENCE │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── aclocal.m4 │ │ │ │ │ │ ├── coinhsl.pc.in │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── deps.f │ │ │ │ │ │ │ ├── deps90.f90 │ │ │ │ │ │ │ └── dump.f90 │ │ │ │ │ │ ├── config.guess │ │ │ │ │ │ ├── config.h.in │ │ │ │ │ │ ├── config.sub │ │ │ │ │ │ ├── configure │ │ │ │ │ │ ├── configure.ac │ │ │ │ │ │ ├── hsl_ma77 │ │ │ │ │ │ │ ├── C │ │ │ │ │ │ │ │ ├── hsl_ma77d.h │ │ │ │ │ │ │ │ └── hsl_ma77d_ciface.f90 │ │ │ │ │ │ │ └── hsl_ma77d.f90 │ │ │ │ │ │ ├── hsl_ma86 │ │ │ │ │ │ │ ├── C │ │ │ │ │ │ │ │ ├── hsl_ma86d.h │ │ │ │ │ │ │ │ └── hsl_ma86d_ciface.f90 │ │ │ │ │ │ │ └── hsl_ma86d.f90 │ │ │ │ │ │ ├── hsl_ma97 │ │ │ │ │ │ │ ├── C │ │ │ │ │ │ │ │ ├── hsl_ma97d.h │ │ │ │ │ │ │ │ └── hsl_ma97d_ciface.f90 │ │ │ │ │ │ │ └── hsl_ma97d.f90 │ │ │ │ │ │ ├── hsl_mc68 │ │ │ │ │ │ │ └── C │ │ │ │ │ │ │ │ ├── hsl_mc68i.h │ │ │ │ │ │ │ │ └── hsl_mc68i_ciface.f90 │ │ │ │ │ │ ├── install-sh │ │ │ │ │ │ ├── ltmain.sh │ │ │ │ │ │ ├── m4 │ │ │ │ │ │ │ ├── libtool.m4 │ │ │ │ │ │ │ ├── ltoptions.m4 │ │ │ │ │ │ │ ├── ltsugar.m4 │ │ │ │ │ │ │ ├── ltversion.m4 │ │ │ │ │ │ │ └── lt~obsolete.m4 │ │ │ │ │ │ ├── ma27 │ │ │ │ │ │ │ └── ma27d.f │ │ │ │ │ │ ├── ma28 │ │ │ │ │ │ │ └── ma28d.f │ │ │ │ │ │ ├── ma57 │ │ │ │ │ │ │ └── ma57d.f │ │ │ │ │ │ ├── mc19 │ │ │ │ │ │ │ └── mc19d.f │ │ │ │ │ │ └── missing │ │ │ │ │ ├── config.guess │ │ │ │ │ ├── config.h.in │ │ │ │ │ ├── config.sub │ │ │ │ │ ├── config_coinhsl.h.in │ │ │ │ │ ├── config_coinhsl_default.h │ │ │ │ │ ├── configure │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── depcomp │ │ │ │ │ ├── install-sh │ │ │ │ │ ├── ltmain.sh │ │ │ │ │ ├── metis_dummy.c │ │ │ │ │ └── missing │ │ │ │ ├── HSLold │ │ │ │ │ ├── CoinHslConfig.h │ │ │ │ │ ├── INSTALL.HSL │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── coinhsl-uninstalled.pc.in │ │ │ │ │ ├── coinhsl.pc.in │ │ │ │ │ ├── config.guess │ │ │ │ │ ├── config.h.in │ │ │ │ │ ├── config.sub │ │ │ │ │ ├── config_coinhsl.h.in │ │ │ │ │ ├── config_coinhsl_default.h │ │ │ │ │ ├── configure │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── depcomp │ │ │ │ │ ├── install-sh │ │ │ │ │ ├── ltmain.sh │ │ │ │ │ └── missing │ │ │ │ ├── Lapack │ │ │ │ │ ├── INSTALL.LAPACK │ │ │ │ │ ├── LAPACK │ │ │ │ │ │ ├── INSTALL │ │ │ │ │ │ │ ├── dlamch.f │ │ │ │ │ │ │ └── slamch.f │ │ │ │ │ │ └── SRC │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── VARIANTS │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── cholesky │ │ │ │ │ │ │ │ ├── RL │ │ │ │ │ │ │ │ │ ├── cpotrf.f │ │ │ │ │ │ │ │ │ ├── dpotrf.f │ │ │ │ │ │ │ │ │ ├── spotrf.f │ │ │ │ │ │ │ │ │ └── zpotrf.f │ │ │ │ │ │ │ │ └── TOP │ │ │ │ │ │ │ │ │ ├── cpotrf.f │ │ │ │ │ │ │ │ │ ├── dpotrf.f │ │ │ │ │ │ │ │ │ ├── spotrf.f │ │ │ │ │ │ │ │ │ └── zpotrf.f │ │ │ │ │ │ │ ├── lu │ │ │ │ │ │ │ │ ├── CR │ │ │ │ │ │ │ │ │ ├── cgetrf.f │ │ │ │ │ │ │ │ │ ├── dgetrf.f │ │ │ │ │ │ │ │ │ ├── sgetrf.f │ │ │ │ │ │ │ │ │ └── zgetrf.f │ │ │ │ │ │ │ │ ├── LL │ │ │ │ │ │ │ │ │ ├── cgetrf.f │ │ │ │ │ │ │ │ │ ├── dgetrf.f │ │ │ │ │ │ │ │ │ ├── sgetrf.f │ │ │ │ │ │ │ │ │ └── zgetrf.f │ │ │ │ │ │ │ │ └── REC │ │ │ │ │ │ │ │ │ ├── cgetrf.f │ │ │ │ │ │ │ │ │ ├── dgetrf.f │ │ │ │ │ │ │ │ │ ├── sgetrf.f │ │ │ │ │ │ │ │ │ └── zgetrf.f │ │ │ │ │ │ │ └── qr │ │ │ │ │ │ │ │ └── LL │ │ │ │ │ │ │ │ ├── cgeqrf.f │ │ │ │ │ │ │ │ ├── dgeqrf.f │ │ │ │ │ │ │ │ ├── sceil.f │ │ │ │ │ │ │ │ ├── sgeqrf.f │ │ │ │ │ │ │ │ └── zgeqrf.f │ │ │ │ │ │ │ ├── cbbcsd.f │ │ │ │ │ │ │ ├── cbdsqr.f │ │ │ │ │ │ │ ├── cgbbrd.f │ │ │ │ │ │ │ ├── cgbcon.f │ │ │ │ │ │ │ ├── cgbequ.f │ │ │ │ │ │ │ ├── cgbequb.f │ │ │ │ │ │ │ ├── cgbrfs.f │ │ │ │ │ │ │ ├── cgbrfsx.f │ │ │ │ │ │ │ ├── cgbsv.f │ │ │ │ │ │ │ ├── cgbsvx.f │ │ │ │ │ │ │ ├── cgbsvxx.f │ │ │ │ │ │ │ ├── cgbtf2.f │ │ │ │ │ │ │ ├── cgbtrf.f │ │ │ │ │ │ │ ├── cgbtrs.f │ │ │ │ │ │ │ ├── cgebak.f │ │ │ │ │ │ │ ├── cgebal.f │ │ │ │ │ │ │ ├── cgebd2.f │ │ │ │ │ │ │ ├── cgebrd.f │ │ │ │ │ │ │ ├── cgecon.f │ │ │ │ │ │ │ ├── cgeequ.f │ │ │ │ │ │ │ ├── cgeequb.f │ │ │ │ │ │ │ ├── cgees.f │ │ │ │ │ │ │ ├── cgeesx.f │ │ │ │ │ │ │ ├── cgeev.f │ │ │ │ │ │ │ ├── cgeevx.f │ │ │ │ │ │ │ ├── cgegs.f │ │ │ │ │ │ │ ├── cgegv.f │ │ │ │ │ │ │ ├── cgehd2.f │ │ │ │ │ │ │ ├── cgehrd.f │ │ │ │ │ │ │ ├── cgelq2.f │ │ │ │ │ │ │ ├── cgelqf.f │ │ │ │ │ │ │ ├── cgels.f │ │ │ │ │ │ │ ├── cgelsd.f │ │ │ │ │ │ │ ├── cgelss.f │ │ │ │ │ │ │ ├── cgelsx.f │ │ │ │ │ │ │ ├── cgelsy.f │ │ │ │ │ │ │ ├── cgemqrt.f │ │ │ │ │ │ │ ├── cgeql2.f │ │ │ │ │ │ │ ├── cgeqlf.f │ │ │ │ │ │ │ ├── cgeqp3.f │ │ │ │ │ │ │ ├── cgeqpf.f │ │ │ │ │ │ │ ├── cgeqr2.f │ │ │ │ │ │ │ ├── cgeqr2p.f │ │ │ │ │ │ │ ├── cgeqrf.f │ │ │ │ │ │ │ ├── cgeqrfp.f │ │ │ │ │ │ │ ├── cgeqrt.f │ │ │ │ │ │ │ ├── cgeqrt2.f │ │ │ │ │ │ │ ├── cgeqrt3.f │ │ │ │ │ │ │ ├── cgerfs.f │ │ │ │ │ │ │ ├── cgerfsx.f │ │ │ │ │ │ │ ├── cgerq2.f │ │ │ │ │ │ │ ├── cgerqf.f │ │ │ │ │ │ │ ├── cgesc2.f │ │ │ │ │ │ │ ├── cgesdd.f │ │ │ │ │ │ │ ├── cgesv.f │ │ │ │ │ │ │ ├── cgesvd.f │ │ │ │ │ │ │ ├── cgesvx.f │ │ │ │ │ │ │ ├── cgesvxx.f │ │ │ │ │ │ │ ├── cgetc2.f │ │ │ │ │ │ │ ├── cgetf2.f │ │ │ │ │ │ │ ├── cgetrf.f │ │ │ │ │ │ │ ├── cgetri.f │ │ │ │ │ │ │ ├── cgetrs.f │ │ │ │ │ │ │ ├── cggbak.f │ │ │ │ │ │ │ ├── cggbal.f │ │ │ │ │ │ │ ├── cgges.f │ │ │ │ │ │ │ ├── cggesx.f │ │ │ │ │ │ │ ├── cggev.f │ │ │ │ │ │ │ ├── cggevx.f │ │ │ │ │ │ │ ├── cggglm.f │ │ │ │ │ │ │ ├── cgghrd.f │ │ │ │ │ │ │ ├── cgglse.f │ │ │ │ │ │ │ ├── cggqrf.f │ │ │ │ │ │ │ ├── cggrqf.f │ │ │ │ │ │ │ ├── cggsvd.f │ │ │ │ │ │ │ ├── cggsvp.f │ │ │ │ │ │ │ ├── cgtcon.f │ │ │ │ │ │ │ ├── cgtrfs.f │ │ │ │ │ │ │ ├── cgtsv.f │ │ │ │ │ │ │ ├── cgtsvx.f │ │ │ │ │ │ │ ├── cgttrf.f │ │ │ │ │ │ │ ├── cgttrs.f │ │ │ │ │ │ │ ├── cgtts2.f │ │ │ │ │ │ │ ├── chbev.f │ │ │ │ │ │ │ ├── chbevd.f │ │ │ │ │ │ │ ├── chbevx.f │ │ │ │ │ │ │ ├── chbgst.f │ │ │ │ │ │ │ ├── chbgv.f │ │ │ │ │ │ │ ├── chbgvd.f │ │ │ │ │ │ │ ├── chbgvx.f │ │ │ │ │ │ │ ├── chbtrd.f │ │ │ │ │ │ │ ├── checon.f │ │ │ │ │ │ │ ├── cheequb.f │ │ │ │ │ │ │ ├── cheev.f │ │ │ │ │ │ │ ├── cheevd.f │ │ │ │ │ │ │ ├── cheevr.f │ │ │ │ │ │ │ ├── cheevx.f │ │ │ │ │ │ │ ├── chegs2.f │ │ │ │ │ │ │ ├── chegst.f │ │ │ │ │ │ │ ├── chegv.f │ │ │ │ │ │ │ ├── chegvd.f │ │ │ │ │ │ │ ├── chegvx.f │ │ │ │ │ │ │ ├── cherfs.f │ │ │ │ │ │ │ ├── cherfsx.f │ │ │ │ │ │ │ ├── chesv.f │ │ │ │ │ │ │ ├── chesvx.f │ │ │ │ │ │ │ ├── chesvxx.f │ │ │ │ │ │ │ ├── cheswapr.f │ │ │ │ │ │ │ ├── chetd2.f │ │ │ │ │ │ │ ├── chetf2.f │ │ │ │ │ │ │ ├── chetrd.f │ │ │ │ │ │ │ ├── chetrf.f │ │ │ │ │ │ │ ├── chetri.f │ │ │ │ │ │ │ ├── chetri2.f │ │ │ │ │ │ │ ├── chetri2x.f │ │ │ │ │ │ │ ├── chetrs.f │ │ │ │ │ │ │ ├── chetrs2.f │ │ │ │ │ │ │ ├── chfrk.f │ │ │ │ │ │ │ ├── chgeqz.f │ │ │ │ │ │ │ ├── chla_transtype.f │ │ │ │ │ │ │ ├── chpcon.f │ │ │ │ │ │ │ ├── chpev.f │ │ │ │ │ │ │ ├── chpevd.f │ │ │ │ │ │ │ ├── chpevx.f │ │ │ │ │ │ │ ├── chpgst.f │ │ │ │ │ │ │ ├── chpgv.f │ │ │ │ │ │ │ ├── chpgvd.f │ │ │ │ │ │ │ ├── chpgvx.f │ │ │ │ │ │ │ ├── chprfs.f │ │ │ │ │ │ │ ├── chpsv.f │ │ │ │ │ │ │ ├── chpsvx.f │ │ │ │ │ │ │ ├── chptrd.f │ │ │ │ │ │ │ ├── chptrf.f │ │ │ │ │ │ │ ├── chptri.f │ │ │ │ │ │ │ ├── chptrs.f │ │ │ │ │ │ │ ├── chsein.f │ │ │ │ │ │ │ ├── chseqr.f │ │ │ │ │ │ │ ├── cla_gbamv.f │ │ │ │ │ │ │ ├── cla_gbrcond_c.f │ │ │ │ │ │ │ ├── cla_gbrcond_x.f │ │ │ │ │ │ │ ├── cla_gbrfsx_extended.f │ │ │ │ │ │ │ ├── cla_gbrpvgrw.f │ │ │ │ │ │ │ ├── cla_geamv.f │ │ │ │ │ │ │ ├── cla_gercond_c.f │ │ │ │ │ │ │ ├── cla_gercond_x.f │ │ │ │ │ │ │ ├── cla_gerfsx_extended.f │ │ │ │ │ │ │ ├── cla_gerpvgrw.f │ │ │ │ │ │ │ ├── cla_heamv.f │ │ │ │ │ │ │ ├── cla_hercond_c.f │ │ │ │ │ │ │ ├── cla_hercond_x.f │ │ │ │ │ │ │ ├── cla_herfsx_extended.f │ │ │ │ │ │ │ ├── cla_herpvgrw.f │ │ │ │ │ │ │ ├── cla_lin_berr.f │ │ │ │ │ │ │ ├── cla_porcond_c.f │ │ │ │ │ │ │ ├── cla_porcond_x.f │ │ │ │ │ │ │ ├── cla_porfsx_extended.f │ │ │ │ │ │ │ ├── cla_porpvgrw.f │ │ │ │ │ │ │ ├── cla_syamv.f │ │ │ │ │ │ │ ├── cla_syrcond_c.f │ │ │ │ │ │ │ ├── cla_syrcond_x.f │ │ │ │ │ │ │ ├── cla_syrfsx_extended.f │ │ │ │ │ │ │ ├── cla_syrpvgrw.f │ │ │ │ │ │ │ ├── cla_wwaddw.f │ │ │ │ │ │ │ ├── clabrd.f │ │ │ │ │ │ │ ├── clacgv.f │ │ │ │ │ │ │ ├── clacn2.f │ │ │ │ │ │ │ ├── clacon.f │ │ │ │ │ │ │ ├── clacp2.f │ │ │ │ │ │ │ ├── clacpy.f │ │ │ │ │ │ │ ├── clacrm.f │ │ │ │ │ │ │ ├── clacrt.f │ │ │ │ │ │ │ ├── cladiv.f │ │ │ │ │ │ │ ├── claed0.f │ │ │ │ │ │ │ ├── claed7.f │ │ │ │ │ │ │ ├── claed8.f │ │ │ │ │ │ │ ├── claein.f │ │ │ │ │ │ │ ├── claesy.f │ │ │ │ │ │ │ ├── claev2.f │ │ │ │ │ │ │ ├── clag2z.f │ │ │ │ │ │ │ ├── clags2.f │ │ │ │ │ │ │ ├── clagtm.f │ │ │ │ │ │ │ ├── clahef.f │ │ │ │ │ │ │ ├── clahqr.f │ │ │ │ │ │ │ ├── clahr2.f │ │ │ │ │ │ │ ├── clahrd.f │ │ │ │ │ │ │ ├── claic1.f │ │ │ │ │ │ │ ├── clals0.f │ │ │ │ │ │ │ ├── clalsa.f │ │ │ │ │ │ │ ├── clalsd.f │ │ │ │ │ │ │ ├── clangb.f │ │ │ │ │ │ │ ├── clange.f │ │ │ │ │ │ │ ├── clangt.f │ │ │ │ │ │ │ ├── clanhb.f │ │ │ │ │ │ │ ├── clanhe.f │ │ │ │ │ │ │ ├── clanhf.f │ │ │ │ │ │ │ ├── clanhp.f │ │ │ │ │ │ │ ├── clanhs.f │ │ │ │ │ │ │ ├── clanht.f │ │ │ │ │ │ │ ├── clansb.f │ │ │ │ │ │ │ ├── clansp.f │ │ │ │ │ │ │ ├── clansy.f │ │ │ │ │ │ │ ├── clantb.f │ │ │ │ │ │ │ ├── clantp.f │ │ │ │ │ │ │ ├── clantr.f │ │ │ │ │ │ │ ├── clapll.f │ │ │ │ │ │ │ ├── clapmr.f │ │ │ │ │ │ │ ├── clapmt.f │ │ │ │ │ │ │ ├── claqgb.f │ │ │ │ │ │ │ ├── claqge.f │ │ │ │ │ │ │ ├── claqhb.f │ │ │ │ │ │ │ ├── claqhe.f │ │ │ │ │ │ │ ├── claqhp.f │ │ │ │ │ │ │ ├── claqp2.f │ │ │ │ │ │ │ ├── claqps.f │ │ │ │ │ │ │ ├── claqr0.f │ │ │ │ │ │ │ ├── claqr1.f │ │ │ │ │ │ │ ├── claqr2.f │ │ │ │ │ │ │ ├── claqr3.f │ │ │ │ │ │ │ ├── claqr4.f │ │ │ │ │ │ │ ├── claqr5.f │ │ │ │ │ │ │ ├── claqsb.f │ │ │ │ │ │ │ ├── claqsp.f │ │ │ │ │ │ │ ├── claqsy.f │ │ │ │ │ │ │ ├── clar1v.f │ │ │ │ │ │ │ ├── clar2v.f │ │ │ │ │ │ │ ├── clarcm.f │ │ │ │ │ │ │ ├── clarf.f │ │ │ │ │ │ │ ├── clarfb.f │ │ │ │ │ │ │ ├── clarfg.f │ │ │ │ │ │ │ ├── clarfgp.f │ │ │ │ │ │ │ ├── clarft.f │ │ │ │ │ │ │ ├── clarfx.f │ │ │ │ │ │ │ ├── clargv.f │ │ │ │ │ │ │ ├── clarnv.f │ │ │ │ │ │ │ ├── clarrv.f │ │ │ │ │ │ │ ├── clarscl2.f │ │ │ │ │ │ │ ├── clartg.f │ │ │ │ │ │ │ ├── clartv.f │ │ │ │ │ │ │ ├── clarz.f │ │ │ │ │ │ │ ├── clarzb.f │ │ │ │ │ │ │ ├── clarzt.f │ │ │ │ │ │ │ ├── clascl.f │ │ │ │ │ │ │ ├── clascl2.f │ │ │ │ │ │ │ ├── claset.f │ │ │ │ │ │ │ ├── clasr.f │ │ │ │ │ │ │ ├── classq.f │ │ │ │ │ │ │ ├── claswp.f │ │ │ │ │ │ │ ├── clasyf.f │ │ │ │ │ │ │ ├── clatbs.f │ │ │ │ │ │ │ ├── clatdf.f │ │ │ │ │ │ │ ├── clatps.f │ │ │ │ │ │ │ ├── clatrd.f │ │ │ │ │ │ │ ├── clatrs.f │ │ │ │ │ │ │ ├── clatrz.f │ │ │ │ │ │ │ ├── clatzm.f │ │ │ │ │ │ │ ├── clauu2.f │ │ │ │ │ │ │ ├── clauum.f │ │ │ │ │ │ │ ├── cpbcon.f │ │ │ │ │ │ │ ├── cpbequ.f │ │ │ │ │ │ │ ├── cpbrfs.f │ │ │ │ │ │ │ ├── cpbstf.f │ │ │ │ │ │ │ ├── cpbsv.f │ │ │ │ │ │ │ ├── cpbsvx.f │ │ │ │ │ │ │ ├── cpbtf2.f │ │ │ │ │ │ │ ├── cpbtrf.f │ │ │ │ │ │ │ ├── cpbtrs.f │ │ │ │ │ │ │ ├── cpftrf.f │ │ │ │ │ │ │ ├── cpftri.f │ │ │ │ │ │ │ ├── cpftrs.f │ │ │ │ │ │ │ ├── cpocon.f │ │ │ │ │ │ │ ├── cpoequ.f │ │ │ │ │ │ │ ├── cpoequb.f │ │ │ │ │ │ │ ├── cporfs.f │ │ │ │ │ │ │ ├── cporfsx.f │ │ │ │ │ │ │ ├── cposv.f │ │ │ │ │ │ │ ├── cposvx.f │ │ │ │ │ │ │ ├── cposvxx.f │ │ │ │ │ │ │ ├── cpotf2.f │ │ │ │ │ │ │ ├── cpotrf.f │ │ │ │ │ │ │ ├── cpotri.f │ │ │ │ │ │ │ ├── cpotrs.f │ │ │ │ │ │ │ ├── cppcon.f │ │ │ │ │ │ │ ├── cppequ.f │ │ │ │ │ │ │ ├── cpprfs.f │ │ │ │ │ │ │ ├── cppsv.f │ │ │ │ │ │ │ ├── cppsvx.f │ │ │ │ │ │ │ ├── cpptrf.f │ │ │ │ │ │ │ ├── cpptri.f │ │ │ │ │ │ │ ├── cpptrs.f │ │ │ │ │ │ │ ├── cpstf2.f │ │ │ │ │ │ │ ├── cpstrf.f │ │ │ │ │ │ │ ├── cptcon.f │ │ │ │ │ │ │ ├── cpteqr.f │ │ │ │ │ │ │ ├── cptrfs.f │ │ │ │ │ │ │ ├── cptsv.f │ │ │ │ │ │ │ ├── cptsvx.f │ │ │ │ │ │ │ ├── cpttrf.f │ │ │ │ │ │ │ ├── cpttrs.f │ │ │ │ │ │ │ ├── cptts2.f │ │ │ │ │ │ │ ├── crot.f │ │ │ │ │ │ │ ├── cspcon.f │ │ │ │ │ │ │ ├── cspmv.f │ │ │ │ │ │ │ ├── cspr.f │ │ │ │ │ │ │ ├── csprfs.f │ │ │ │ │ │ │ ├── cspsv.f │ │ │ │ │ │ │ ├── cspsvx.f │ │ │ │ │ │ │ ├── csptrf.f │ │ │ │ │ │ │ ├── csptri.f │ │ │ │ │ │ │ ├── csptrs.f │ │ │ │ │ │ │ ├── csrscl.f │ │ │ │ │ │ │ ├── cstedc.f │ │ │ │ │ │ │ ├── cstegr.f │ │ │ │ │ │ │ ├── cstein.f │ │ │ │ │ │ │ ├── cstemr.f │ │ │ │ │ │ │ ├── csteqr.f │ │ │ │ │ │ │ ├── csycon.f │ │ │ │ │ │ │ ├── csyconv.f │ │ │ │ │ │ │ ├── csyequb.f │ │ │ │ │ │ │ ├── csymv.f │ │ │ │ │ │ │ ├── csyr.f │ │ │ │ │ │ │ ├── csyrfs.f │ │ │ │ │ │ │ ├── csyrfsx.f │ │ │ │ │ │ │ ├── csysv.f │ │ │ │ │ │ │ ├── csysvx.f │ │ │ │ │ │ │ ├── csysvxx.f │ │ │ │ │ │ │ ├── csyswapr.f │ │ │ │ │ │ │ ├── csytf2.f │ │ │ │ │ │ │ ├── csytrf.f │ │ │ │ │ │ │ ├── csytri.f │ │ │ │ │ │ │ ├── csytri2.f │ │ │ │ │ │ │ ├── csytri2x.f │ │ │ │ │ │ │ ├── csytrs.f │ │ │ │ │ │ │ ├── csytrs2.f │ │ │ │ │ │ │ ├── ctbcon.f │ │ │ │ │ │ │ ├── ctbrfs.f │ │ │ │ │ │ │ ├── ctbtrs.f │ │ │ │ │ │ │ ├── ctfsm.f │ │ │ │ │ │ │ ├── ctftri.f │ │ │ │ │ │ │ ├── ctfttp.f │ │ │ │ │ │ │ ├── ctfttr.f │ │ │ │ │ │ │ ├── ctgevc.f │ │ │ │ │ │ │ ├── ctgex2.f │ │ │ │ │ │ │ ├── ctgexc.f │ │ │ │ │ │ │ ├── ctgsen.f │ │ │ │ │ │ │ ├── ctgsja.f │ │ │ │ │ │ │ ├── ctgsna.f │ │ │ │ │ │ │ ├── ctgsy2.f │ │ │ │ │ │ │ ├── ctgsyl.f │ │ │ │ │ │ │ ├── ctpcon.f │ │ │ │ │ │ │ ├── ctpmqrt.f │ │ │ │ │ │ │ ├── ctpqrt.f │ │ │ │ │ │ │ ├── ctpqrt2.f │ │ │ │ │ │ │ ├── ctprfb.f │ │ │ │ │ │ │ ├── ctprfs.f │ │ │ │ │ │ │ ├── ctptri.f │ │ │ │ │ │ │ ├── ctptrs.f │ │ │ │ │ │ │ ├── ctpttf.f │ │ │ │ │ │ │ ├── ctpttr.f │ │ │ │ │ │ │ ├── ctrcon.f │ │ │ │ │ │ │ ├── ctrevc.f │ │ │ │ │ │ │ ├── ctrexc.f │ │ │ │ │ │ │ ├── ctrrfs.f │ │ │ │ │ │ │ ├── ctrsen.f │ │ │ │ │ │ │ ├── ctrsna.f │ │ │ │ │ │ │ ├── ctrsyl.f │ │ │ │ │ │ │ ├── ctrti2.f │ │ │ │ │ │ │ ├── ctrtri.f │ │ │ │ │ │ │ ├── ctrtrs.f │ │ │ │ │ │ │ ├── ctrttf.f │ │ │ │ │ │ │ ├── ctrttp.f │ │ │ │ │ │ │ ├── ctzrqf.f │ │ │ │ │ │ │ ├── ctzrzf.f │ │ │ │ │ │ │ ├── cunbdb.f │ │ │ │ │ │ │ ├── cuncsd.f │ │ │ │ │ │ │ ├── cung2l.f │ │ │ │ │ │ │ ├── cung2r.f │ │ │ │ │ │ │ ├── cungbr.f │ │ │ │ │ │ │ ├── cunghr.f │ │ │ │ │ │ │ ├── cungl2.f │ │ │ │ │ │ │ ├── cunglq.f │ │ │ │ │ │ │ ├── cungql.f │ │ │ │ │ │ │ ├── cungqr.f │ │ │ │ │ │ │ ├── cungr2.f │ │ │ │ │ │ │ ├── cungrq.f │ │ │ │ │ │ │ ├── cungtr.f │ │ │ │ │ │ │ ├── cunm2l.f │ │ │ │ │ │ │ ├── cunm2r.f │ │ │ │ │ │ │ ├── cunmbr.f │ │ │ │ │ │ │ ├── cunmhr.f │ │ │ │ │ │ │ ├── cunml2.f │ │ │ │ │ │ │ ├── cunmlq.f │ │ │ │ │ │ │ ├── cunmql.f │ │ │ │ │ │ │ ├── cunmqr.f │ │ │ │ │ │ │ ├── cunmr2.f │ │ │ │ │ │ │ ├── cunmr3.f │ │ │ │ │ │ │ ├── cunmrq.f │ │ │ │ │ │ │ ├── cunmrz.f │ │ │ │ │ │ │ ├── cunmtr.f │ │ │ │ │ │ │ ├── cupgtr.f │ │ │ │ │ │ │ ├── cupmtr.f │ │ │ │ │ │ │ ├── dbbcsd.f │ │ │ │ │ │ │ ├── dbdsdc.f │ │ │ │ │ │ │ ├── dbdsqr.f │ │ │ │ │ │ │ ├── ddisna.f │ │ │ │ │ │ │ ├── dgbbrd.f │ │ │ │ │ │ │ ├── dgbcon.f │ │ │ │ │ │ │ ├── dgbequ.f │ │ │ │ │ │ │ ├── dgbequb.f │ │ │ │ │ │ │ ├── dgbrfs.f │ │ │ │ │ │ │ ├── dgbrfsx.f │ │ │ │ │ │ │ ├── dgbsv.f │ │ │ │ │ │ │ ├── dgbsvx.f │ │ │ │ │ │ │ ├── dgbsvxx.f │ │ │ │ │ │ │ ├── dgbtf2.f │ │ │ │ │ │ │ ├── dgbtrf.f │ │ │ │ │ │ │ ├── dgbtrs.f │ │ │ │ │ │ │ ├── dgebak.f │ │ │ │ │ │ │ ├── dgebal.f │ │ │ │ │ │ │ ├── dgebd2.f │ │ │ │ │ │ │ ├── dgebrd.f │ │ │ │ │ │ │ ├── dgecon.f │ │ │ │ │ │ │ ├── dgeequ.f │ │ │ │ │ │ │ ├── dgeequb.f │ │ │ │ │ │ │ ├── dgees.f │ │ │ │ │ │ │ ├── dgeesx.f │ │ │ │ │ │ │ ├── dgeev.f │ │ │ │ │ │ │ ├── dgeevx.f │ │ │ │ │ │ │ ├── dgegs.f │ │ │ │ │ │ │ ├── dgegv.f │ │ │ │ │ │ │ ├── dgehd2.f │ │ │ │ │ │ │ ├── dgehrd.f │ │ │ │ │ │ │ ├── dgejsv.f │ │ │ │ │ │ │ ├── dgelq2.f │ │ │ │ │ │ │ ├── dgelqf.f │ │ │ │ │ │ │ ├── dgels.f │ │ │ │ │ │ │ ├── dgelsd.f │ │ │ │ │ │ │ ├── dgelss.f │ │ │ │ │ │ │ ├── dgelsx.f │ │ │ │ │ │ │ ├── dgelsy.f │ │ │ │ │ │ │ ├── dgemqrt.f │ │ │ │ │ │ │ ├── dgeql2.f │ │ │ │ │ │ │ ├── dgeqlf.f │ │ │ │ │ │ │ ├── dgeqp3.f │ │ │ │ │ │ │ ├── dgeqpf.f │ │ │ │ │ │ │ ├── dgeqr2.f │ │ │ │ │ │ │ ├── dgeqr2p.f │ │ │ │ │ │ │ ├── dgeqrf.f │ │ │ │ │ │ │ ├── dgeqrfp.f │ │ │ │ │ │ │ ├── dgeqrt.f │ │ │ │ │ │ │ ├── dgeqrt2.f │ │ │ │ │ │ │ ├── dgeqrt3.f │ │ │ │ │ │ │ ├── dgerfs.f │ │ │ │ │ │ │ ├── dgerfsx.f │ │ │ │ │ │ │ ├── dgerq2.f │ │ │ │ │ │ │ ├── dgerqf.f │ │ │ │ │ │ │ ├── dgesc2.f │ │ │ │ │ │ │ ├── dgesdd.f │ │ │ │ │ │ │ ├── dgesv.f │ │ │ │ │ │ │ ├── dgesvd.f │ │ │ │ │ │ │ ├── dgesvj.f │ │ │ │ │ │ │ ├── dgesvx.f │ │ │ │ │ │ │ ├── dgesvxx.f │ │ │ │ │ │ │ ├── dgetc2.f │ │ │ │ │ │ │ ├── dgetf2.f │ │ │ │ │ │ │ ├── dgetrf.f │ │ │ │ │ │ │ ├── dgetri.f │ │ │ │ │ │ │ ├── dgetrs.f │ │ │ │ │ │ │ ├── dggbak.f │ │ │ │ │ │ │ ├── dggbal.f │ │ │ │ │ │ │ ├── dgges.f │ │ │ │ │ │ │ ├── dggesx.f │ │ │ │ │ │ │ ├── dggev.f │ │ │ │ │ │ │ ├── dggevx.f │ │ │ │ │ │ │ ├── dggglm.f │ │ │ │ │ │ │ ├── dgghrd.f │ │ │ │ │ │ │ ├── dgglse.f │ │ │ │ │ │ │ ├── dggqrf.f │ │ │ │ │ │ │ ├── dggrqf.f │ │ │ │ │ │ │ ├── dggsvd.f │ │ │ │ │ │ │ ├── dggsvp.f │ │ │ │ │ │ │ ├── dgsvj0.f │ │ │ │ │ │ │ ├── dgsvj1.f │ │ │ │ │ │ │ ├── dgtcon.f │ │ │ │ │ │ │ ├── dgtrfs.f │ │ │ │ │ │ │ ├── dgtsv.f │ │ │ │ │ │ │ ├── dgtsvx.f │ │ │ │ │ │ │ ├── dgttrf.f │ │ │ │ │ │ │ ├── dgttrs.f │ │ │ │ │ │ │ ├── dgtts2.f │ │ │ │ │ │ │ ├── dhgeqz.f │ │ │ │ │ │ │ ├── dhsein.f │ │ │ │ │ │ │ ├── dhseqr.f │ │ │ │ │ │ │ ├── disnan.f │ │ │ │ │ │ │ ├── dla_gbamv.f │ │ │ │ │ │ │ ├── dla_gbrcond.f │ │ │ │ │ │ │ ├── dla_gbrfsx_extended.f │ │ │ │ │ │ │ ├── dla_gbrpvgrw.f │ │ │ │ │ │ │ ├── dla_geamv.f │ │ │ │ │ │ │ ├── dla_gercond.f │ │ │ │ │ │ │ ├── dla_gerfsx_extended.f │ │ │ │ │ │ │ ├── dla_gerpvgrw.f │ │ │ │ │ │ │ ├── dla_lin_berr.f │ │ │ │ │ │ │ ├── dla_porcond.f │ │ │ │ │ │ │ ├── dla_porfsx_extended.f │ │ │ │ │ │ │ ├── dla_porpvgrw.f │ │ │ │ │ │ │ ├── dla_syamv.f │ │ │ │ │ │ │ ├── dla_syrcond.f │ │ │ │ │ │ │ ├── dla_syrfsx_extended.f │ │ │ │ │ │ │ ├── dla_syrpvgrw.f │ │ │ │ │ │ │ ├── dla_wwaddw.f │ │ │ │ │ │ │ ├── dlabad.f │ │ │ │ │ │ │ ├── dlabrd.f │ │ │ │ │ │ │ ├── dlacn2.f │ │ │ │ │ │ │ ├── dlacon.f │ │ │ │ │ │ │ ├── dlacpy.f │ │ │ │ │ │ │ ├── dladiv.f │ │ │ │ │ │ │ ├── dlae2.f │ │ │ │ │ │ │ ├── dlaebz.f │ │ │ │ │ │ │ ├── dlaed0.f │ │ │ │ │ │ │ ├── dlaed1.f │ │ │ │ │ │ │ ├── dlaed2.f │ │ │ │ │ │ │ ├── dlaed3.f │ │ │ │ │ │ │ ├── dlaed4.f │ │ │ │ │ │ │ ├── dlaed5.f │ │ │ │ │ │ │ ├── dlaed6.f │ │ │ │ │ │ │ ├── dlaed7.f │ │ │ │ │ │ │ ├── dlaed8.f │ │ │ │ │ │ │ ├── dlaed9.f │ │ │ │ │ │ │ ├── dlaeda.f │ │ │ │ │ │ │ ├── dlaein.f │ │ │ │ │ │ │ ├── dlaev2.f │ │ │ │ │ │ │ ├── dlaexc.f │ │ │ │ │ │ │ ├── dlag2.f │ │ │ │ │ │ │ ├── dlag2s.f │ │ │ │ │ │ │ ├── dlags2.f │ │ │ │ │ │ │ ├── dlagtf.f │ │ │ │ │ │ │ ├── dlagtm.f │ │ │ │ │ │ │ ├── dlagts.f │ │ │ │ │ │ │ ├── dlagv2.f │ │ │ │ │ │ │ ├── dlahqr.f │ │ │ │ │ │ │ ├── dlahr2.f │ │ │ │ │ │ │ ├── dlahrd.f │ │ │ │ │ │ │ ├── dlaic1.f │ │ │ │ │ │ │ ├── dlaisnan.f │ │ │ │ │ │ │ ├── dlaln2.f │ │ │ │ │ │ │ ├── dlals0.f │ │ │ │ │ │ │ ├── dlalsa.f │ │ │ │ │ │ │ ├── dlalsd.f │ │ │ │ │ │ │ ├── dlamrg.f │ │ │ │ │ │ │ ├── dlaneg.f │ │ │ │ │ │ │ ├── dlangb.f │ │ │ │ │ │ │ ├── dlange.f │ │ │ │ │ │ │ ├── dlangt.f │ │ │ │ │ │ │ ├── dlanhs.f │ │ │ │ │ │ │ ├── dlansb.f │ │ │ │ │ │ │ ├── dlansf.f │ │ │ │ │ │ │ ├── dlansp.f │ │ │ │ │ │ │ ├── dlanst.f │ │ │ │ │ │ │ ├── dlansy.f │ │ │ │ │ │ │ ├── dlantb.f │ │ │ │ │ │ │ ├── dlantp.f │ │ │ │ │ │ │ ├── dlantr.f │ │ │ │ │ │ │ ├── dlanv2.f │ │ │ │ │ │ │ ├── dlapll.f │ │ │ │ │ │ │ ├── dlapmr.f │ │ │ │ │ │ │ ├── dlapmt.f │ │ │ │ │ │ │ ├── dlapy2.f │ │ │ │ │ │ │ ├── dlapy3.f │ │ │ │ │ │ │ ├── dlaqgb.f │ │ │ │ │ │ │ ├── dlaqge.f │ │ │ │ │ │ │ ├── dlaqp2.f │ │ │ │ │ │ │ ├── dlaqps.f │ │ │ │ │ │ │ ├── dlaqr0.f │ │ │ │ │ │ │ ├── dlaqr1.f │ │ │ │ │ │ │ ├── dlaqr2.f │ │ │ │ │ │ │ ├── dlaqr3.f │ │ │ │ │ │ │ ├── dlaqr4.f │ │ │ │ │ │ │ ├── dlaqr5.f │ │ │ │ │ │ │ ├── dlaqsb.f │ │ │ │ │ │ │ ├── dlaqsp.f │ │ │ │ │ │ │ ├── dlaqsy.f │ │ │ │ │ │ │ ├── dlaqtr.f │ │ │ │ │ │ │ ├── dlar1v.f │ │ │ │ │ │ │ ├── dlar2v.f │ │ │ │ │ │ │ ├── dlarf.f │ │ │ │ │ │ │ ├── dlarfb.f │ │ │ │ │ │ │ ├── dlarfg.f │ │ │ │ │ │ │ ├── dlarfgp.f │ │ │ │ │ │ │ ├── dlarft.f │ │ │ │ │ │ │ ├── dlarfx.f │ │ │ │ │ │ │ ├── dlargv.f │ │ │ │ │ │ │ ├── dlarnv.f │ │ │ │ │ │ │ ├── dlarra.f │ │ │ │ │ │ │ ├── dlarrb.f │ │ │ │ │ │ │ ├── dlarrc.f │ │ │ │ │ │ │ ├── dlarrd.f │ │ │ │ │ │ │ ├── dlarre.f │ │ │ │ │ │ │ ├── dlarrf.f │ │ │ │ │ │ │ ├── dlarrj.f │ │ │ │ │ │ │ ├── dlarrk.f │ │ │ │ │ │ │ ├── dlarrr.f │ │ │ │ │ │ │ ├── dlarrv.f │ │ │ │ │ │ │ ├── dlarscl2.f │ │ │ │ │ │ │ ├── dlartg.f │ │ │ │ │ │ │ ├── dlartgp.f │ │ │ │ │ │ │ ├── dlartgs.f │ │ │ │ │ │ │ ├── dlartv.f │ │ │ │ │ │ │ ├── dlaruv.f │ │ │ │ │ │ │ ├── dlarz.f │ │ │ │ │ │ │ ├── dlarzb.f │ │ │ │ │ │ │ ├── dlarzt.f │ │ │ │ │ │ │ ├── dlas2.f │ │ │ │ │ │ │ ├── dlascl.f │ │ │ │ │ │ │ ├── dlascl2.f │ │ │ │ │ │ │ ├── dlasd0.f │ │ │ │ │ │ │ ├── dlasd1.f │ │ │ │ │ │ │ ├── dlasd2.f │ │ │ │ │ │ │ ├── dlasd3.f │ │ │ │ │ │ │ ├── dlasd4.f │ │ │ │ │ │ │ ├── dlasd5.f │ │ │ │ │ │ │ ├── dlasd6.f │ │ │ │ │ │ │ ├── dlasd7.f │ │ │ │ │ │ │ ├── dlasd8.f │ │ │ │ │ │ │ ├── dlasda.f │ │ │ │ │ │ │ ├── dlasdq.f │ │ │ │ │ │ │ ├── dlasdt.f │ │ │ │ │ │ │ ├── dlaset.f │ │ │ │ │ │ │ ├── dlasq1.f │ │ │ │ │ │ │ ├── dlasq2.f │ │ │ │ │ │ │ ├── dlasq3.f │ │ │ │ │ │ │ ├── dlasq4.f │ │ │ │ │ │ │ ├── dlasq5.f │ │ │ │ │ │ │ ├── dlasq6.f │ │ │ │ │ │ │ ├── dlasr.f │ │ │ │ │ │ │ ├── dlasrt.f │ │ │ │ │ │ │ ├── dlassq.f │ │ │ │ │ │ │ ├── dlasv2.f │ │ │ │ │ │ │ ├── dlaswp.f │ │ │ │ │ │ │ ├── dlasy2.f │ │ │ │ │ │ │ ├── dlasyf.f │ │ │ │ │ │ │ ├── dlat2s.f │ │ │ │ │ │ │ ├── dlatbs.f │ │ │ │ │ │ │ ├── dlatdf.f │ │ │ │ │ │ │ ├── dlatps.f │ │ │ │ │ │ │ ├── dlatrd.f │ │ │ │ │ │ │ ├── dlatrs.f │ │ │ │ │ │ │ ├── dlatrz.f │ │ │ │ │ │ │ ├── dlatzm.f │ │ │ │ │ │ │ ├── dlauu2.f │ │ │ │ │ │ │ ├── dlauum.f │ │ │ │ │ │ │ ├── dopgtr.f │ │ │ │ │ │ │ ├── dopmtr.f │ │ │ │ │ │ │ ├── dorbdb.f │ │ │ │ │ │ │ ├── dorcsd.f │ │ │ │ │ │ │ ├── dorg2l.f │ │ │ │ │ │ │ ├── dorg2r.f │ │ │ │ │ │ │ ├── dorgbr.f │ │ │ │ │ │ │ ├── dorghr.f │ │ │ │ │ │ │ ├── dorgl2.f │ │ │ │ │ │ │ ├── dorglq.f │ │ │ │ │ │ │ ├── dorgql.f │ │ │ │ │ │ │ ├── dorgqr.f │ │ │ │ │ │ │ ├── dorgr2.f │ │ │ │ │ │ │ ├── dorgrq.f │ │ │ │ │ │ │ ├── dorgtr.f │ │ │ │ │ │ │ ├── dorm2l.f │ │ │ │ │ │ │ ├── dorm2r.f │ │ │ │ │ │ │ ├── dormbr.f │ │ │ │ │ │ │ ├── dormhr.f │ │ │ │ │ │ │ ├── dorml2.f │ │ │ │ │ │ │ ├── dormlq.f │ │ │ │ │ │ │ ├── dormql.f │ │ │ │ │ │ │ ├── dormqr.f │ │ │ │ │ │ │ ├── dormr2.f │ │ │ │ │ │ │ ├── dormr3.f │ │ │ │ │ │ │ ├── dormrq.f │ │ │ │ │ │ │ ├── dormrz.f │ │ │ │ │ │ │ ├── dormtr.f │ │ │ │ │ │ │ ├── dpbcon.f │ │ │ │ │ │ │ ├── dpbequ.f │ │ │ │ │ │ │ ├── dpbrfs.f │ │ │ │ │ │ │ ├── dpbstf.f │ │ │ │ │ │ │ ├── dpbsv.f │ │ │ │ │ │ │ ├── dpbsvx.f │ │ │ │ │ │ │ ├── dpbtf2.f │ │ │ │ │ │ │ ├── dpbtrf.f │ │ │ │ │ │ │ ├── dpbtrs.f │ │ │ │ │ │ │ ├── dpftrf.f │ │ │ │ │ │ │ ├── dpftri.f │ │ │ │ │ │ │ ├── dpftrs.f │ │ │ │ │ │ │ ├── dpocon.f │ │ │ │ │ │ │ ├── dpoequ.f │ │ │ │ │ │ │ ├── dpoequb.f │ │ │ │ │ │ │ ├── dporfs.f │ │ │ │ │ │ │ ├── dporfsx.f │ │ │ │ │ │ │ ├── dposv.f │ │ │ │ │ │ │ ├── dposvx.f │ │ │ │ │ │ │ ├── dposvxx.f │ │ │ │ │ │ │ ├── dpotf2.f │ │ │ │ │ │ │ ├── dpotrf.f │ │ │ │ │ │ │ ├── dpotri.f │ │ │ │ │ │ │ ├── dpotrs.f │ │ │ │ │ │ │ ├── dppcon.f │ │ │ │ │ │ │ ├── dppequ.f │ │ │ │ │ │ │ ├── dpprfs.f │ │ │ │ │ │ │ ├── dppsv.f │ │ │ │ │ │ │ ├── dppsvx.f │ │ │ │ │ │ │ ├── dpptrf.f │ │ │ │ │ │ │ ├── dpptri.f │ │ │ │ │ │ │ ├── dpptrs.f │ │ │ │ │ │ │ ├── dpstf2.f │ │ │ │ │ │ │ ├── dpstrf.f │ │ │ │ │ │ │ ├── dptcon.f │ │ │ │ │ │ │ ├── dpteqr.f │ │ │ │ │ │ │ ├── dptrfs.f │ │ │ │ │ │ │ ├── dptsv.f │ │ │ │ │ │ │ ├── dptsvx.f │ │ │ │ │ │ │ ├── dpttrf.f │ │ │ │ │ │ │ ├── dpttrs.f │ │ │ │ │ │ │ ├── dptts2.f │ │ │ │ │ │ │ ├── drscl.f │ │ │ │ │ │ │ ├── dsbev.f │ │ │ │ │ │ │ ├── dsbevd.f │ │ │ │ │ │ │ ├── dsbevx.f │ │ │ │ │ │ │ ├── dsbgst.f │ │ │ │ │ │ │ ├── dsbgv.f │ │ │ │ │ │ │ ├── dsbgvd.f │ │ │ │ │ │ │ ├── dsbgvx.f │ │ │ │ │ │ │ ├── dsbtrd.f │ │ │ │ │ │ │ ├── dsfrk.f │ │ │ │ │ │ │ ├── dsgesv.f │ │ │ │ │ │ │ ├── dspcon.f │ │ │ │ │ │ │ ├── dspev.f │ │ │ │ │ │ │ ├── dspevd.f │ │ │ │ │ │ │ ├── dspevx.f │ │ │ │ │ │ │ ├── dspgst.f │ │ │ │ │ │ │ ├── dspgv.f │ │ │ │ │ │ │ ├── dspgvd.f │ │ │ │ │ │ │ ├── dspgvx.f │ │ │ │ │ │ │ ├── dsposv.f │ │ │ │ │ │ │ ├── dsprfs.f │ │ │ │ │ │ │ ├── dspsv.f │ │ │ │ │ │ │ ├── dspsvx.f │ │ │ │ │ │ │ ├── dsptrd.f │ │ │ │ │ │ │ ├── dsptrf.f │ │ │ │ │ │ │ ├── dsptri.f │ │ │ │ │ │ │ ├── dsptrs.f │ │ │ │ │ │ │ ├── dstebz.f │ │ │ │ │ │ │ ├── dstedc.f │ │ │ │ │ │ │ ├── dstegr.f │ │ │ │ │ │ │ ├── dstein.f │ │ │ │ │ │ │ ├── dstemr.f │ │ │ │ │ │ │ ├── dsteqr.f │ │ │ │ │ │ │ ├── dsterf.f │ │ │ │ │ │ │ ├── dstev.f │ │ │ │ │ │ │ ├── dstevd.f │ │ │ │ │ │ │ ├── dstevr.f │ │ │ │ │ │ │ ├── dstevx.f │ │ │ │ │ │ │ ├── dsycon.f │ │ │ │ │ │ │ ├── dsyconv.f │ │ │ │ │ │ │ ├── dsyequb.f │ │ │ │ │ │ │ ├── dsyev.f │ │ │ │ │ │ │ ├── dsyevd.f │ │ │ │ │ │ │ ├── dsyevr.f │ │ │ │ │ │ │ ├── dsyevx.f │ │ │ │ │ │ │ ├── dsygs2.f │ │ │ │ │ │ │ ├── dsygst.f │ │ │ │ │ │ │ ├── dsygv.f │ │ │ │ │ │ │ ├── dsygvd.f │ │ │ │ │ │ │ ├── dsygvx.f │ │ │ │ │ │ │ ├── dsyrfs.f │ │ │ │ │ │ │ ├── dsyrfsx.f │ │ │ │ │ │ │ ├── dsysv.f │ │ │ │ │ │ │ ├── dsysvx.f │ │ │ │ │ │ │ ├── dsysvxx.f │ │ │ │ │ │ │ ├── dsyswapr.f │ │ │ │ │ │ │ ├── dsytd2.f │ │ │ │ │ │ │ ├── dsytf2.f │ │ │ │ │ │ │ ├── dsytrd.f │ │ │ │ │ │ │ ├── dsytrf.f │ │ │ │ │ │ │ ├── dsytri.f │ │ │ │ │ │ │ ├── dsytri2.f │ │ │ │ │ │ │ ├── dsytri2x.f │ │ │ │ │ │ │ ├── dsytrs.f │ │ │ │ │ │ │ ├── dsytrs2.f │ │ │ │ │ │ │ ├── dtbcon.f │ │ │ │ │ │ │ ├── dtbrfs.f │ │ │ │ │ │ │ ├── dtbtrs.f │ │ │ │ │ │ │ ├── dtfsm.f │ │ │ │ │ │ │ ├── dtftri.f │ │ │ │ │ │ │ ├── dtfttp.f │ │ │ │ │ │ │ ├── dtfttr.f │ │ │ │ │ │ │ ├── dtgevc.f │ │ │ │ │ │ │ ├── dtgex2.f │ │ │ │ │ │ │ ├── dtgexc.f │ │ │ │ │ │ │ ├── dtgsen.f │ │ │ │ │ │ │ ├── dtgsja.f │ │ │ │ │ │ │ ├── dtgsna.f │ │ │ │ │ │ │ ├── dtgsy2.f │ │ │ │ │ │ │ ├── dtgsyl.f │ │ │ │ │ │ │ ├── dtpcon.f │ │ │ │ │ │ │ ├── dtpmqrt.f │ │ │ │ │ │ │ ├── dtpqrt.f │ │ │ │ │ │ │ ├── dtpqrt2.f │ │ │ │ │ │ │ ├── dtprfb.f │ │ │ │ │ │ │ ├── dtprfs.f │ │ │ │ │ │ │ ├── dtptri.f │ │ │ │ │ │ │ ├── dtptrs.f │ │ │ │ │ │ │ ├── dtpttf.f │ │ │ │ │ │ │ ├── dtpttr.f │ │ │ │ │ │ │ ├── dtrcon.f │ │ │ │ │ │ │ ├── dtrevc.f │ │ │ │ │ │ │ ├── dtrexc.f │ │ │ │ │ │ │ ├── dtrrfs.f │ │ │ │ │ │ │ ├── dtrsen.f │ │ │ │ │ │ │ ├── dtrsna.f │ │ │ │ │ │ │ ├── dtrsyl.f │ │ │ │ │ │ │ ├── dtrti2.f │ │ │ │ │ │ │ ├── dtrtri.f │ │ │ │ │ │ │ ├── dtrtrs.f │ │ │ │ │ │ │ ├── dtrttf.f │ │ │ │ │ │ │ ├── dtrttp.f │ │ │ │ │ │ │ ├── dtzrqf.f │ │ │ │ │ │ │ ├── dtzrzf.f │ │ │ │ │ │ │ ├── dzsum1.f │ │ │ │ │ │ │ ├── icmax1.f │ │ │ │ │ │ │ ├── ieeeck.f │ │ │ │ │ │ │ ├── ilaclc.f │ │ │ │ │ │ │ ├── ilaclr.f │ │ │ │ │ │ │ ├── iladiag.f │ │ │ │ │ │ │ ├── iladlc.f │ │ │ │ │ │ │ ├── iladlr.f │ │ │ │ │ │ │ ├── ilaenv.f │ │ │ │ │ │ │ ├── ilaprec.f │ │ │ │ │ │ │ ├── ilaslc.f │ │ │ │ │ │ │ ├── ilaslr.f │ │ │ │ │ │ │ ├── ilatrans.f │ │ │ │ │ │ │ ├── ilauplo.f │ │ │ │ │ │ │ ├── ilaver.f │ │ │ │ │ │ │ ├── ilazlc.f │ │ │ │ │ │ │ ├── ilazlr.f │ │ │ │ │ │ │ ├── iparmq.f │ │ │ │ │ │ │ ├── izmax1.f │ │ │ │ │ │ │ ├── lsamen.f │ │ │ │ │ │ │ ├── sbbcsd.f │ │ │ │ │ │ │ ├── sbdsdc.f │ │ │ │ │ │ │ ├── sbdsqr.f │ │ │ │ │ │ │ ├── scsum1.f │ │ │ │ │ │ │ ├── sdisna.f │ │ │ │ │ │ │ ├── sgbbrd.f │ │ │ │ │ │ │ ├── sgbcon.f │ │ │ │ │ │ │ ├── sgbequ.f │ │ │ │ │ │ │ ├── sgbequb.f │ │ │ │ │ │ │ ├── sgbrfs.f │ │ │ │ │ │ │ ├── sgbrfsx.f │ │ │ │ │ │ │ ├── sgbsv.f │ │ │ │ │ │ │ ├── sgbsvx.f │ │ │ │ │ │ │ ├── sgbsvxx.f │ │ │ │ │ │ │ ├── sgbtf2.f │ │ │ │ │ │ │ ├── sgbtrf.f │ │ │ │ │ │ │ ├── sgbtrs.f │ │ │ │ │ │ │ ├── sgebak.f │ │ │ │ │ │ │ ├── sgebal.f │ │ │ │ │ │ │ ├── sgebd2.f │ │ │ │ │ │ │ ├── sgebrd.f │ │ │ │ │ │ │ ├── sgecon.f │ │ │ │ │ │ │ ├── sgeequ.f │ │ │ │ │ │ │ ├── sgeequb.f │ │ │ │ │ │ │ ├── sgees.f │ │ │ │ │ │ │ ├── sgeesx.f │ │ │ │ │ │ │ ├── sgeev.f │ │ │ │ │ │ │ ├── sgeevx.f │ │ │ │ │ │ │ ├── sgegs.f │ │ │ │ │ │ │ ├── sgegv.f │ │ │ │ │ │ │ ├── sgehd2.f │ │ │ │ │ │ │ ├── sgehrd.f │ │ │ │ │ │ │ ├── sgejsv.f │ │ │ │ │ │ │ ├── sgelq2.f │ │ │ │ │ │ │ ├── sgelqf.f │ │ │ │ │ │ │ ├── sgels.f │ │ │ │ │ │ │ ├── sgelsd.f │ │ │ │ │ │ │ ├── sgelss.f │ │ │ │ │ │ │ ├── sgelsx.f │ │ │ │ │ │ │ ├── sgelsy.f │ │ │ │ │ │ │ ├── sgemqrt.f │ │ │ │ │ │ │ ├── sgeql2.f │ │ │ │ │ │ │ ├── sgeqlf.f │ │ │ │ │ │ │ ├── sgeqp3.f │ │ │ │ │ │ │ ├── sgeqpf.f │ │ │ │ │ │ │ ├── sgeqr2.f │ │ │ │ │ │ │ ├── sgeqr2p.f │ │ │ │ │ │ │ ├── sgeqrf.f │ │ │ │ │ │ │ ├── sgeqrfp.f │ │ │ │ │ │ │ ├── sgeqrt.f │ │ │ │ │ │ │ ├── sgeqrt2.f │ │ │ │ │ │ │ ├── sgeqrt3.f │ │ │ │ │ │ │ ├── sgerfs.f │ │ │ │ │ │ │ ├── sgerfsx.f │ │ │ │ │ │ │ ├── sgerq2.f │ │ │ │ │ │ │ ├── sgerqf.f │ │ │ │ │ │ │ ├── sgesc2.f │ │ │ │ │ │ │ ├── sgesdd.f │ │ │ │ │ │ │ ├── sgesv.f │ │ │ │ │ │ │ ├── sgesvd.f │ │ │ │ │ │ │ ├── sgesvj.f │ │ │ │ │ │ │ ├── sgesvx.f │ │ │ │ │ │ │ ├── sgesvxx.f │ │ │ │ │ │ │ ├── sgetc2.f │ │ │ │ │ │ │ ├── sgetf2.f │ │ │ │ │ │ │ ├── sgetrf.f │ │ │ │ │ │ │ ├── sgetri.f │ │ │ │ │ │ │ ├── sgetrs.f │ │ │ │ │ │ │ ├── sggbak.f │ │ │ │ │ │ │ ├── sggbal.f │ │ │ │ │ │ │ ├── sgges.f │ │ │ │ │ │ │ ├── sggesx.f │ │ │ │ │ │ │ ├── sggev.f │ │ │ │ │ │ │ ├── sggevx.f │ │ │ │ │ │ │ ├── sggglm.f │ │ │ │ │ │ │ ├── sgghrd.f │ │ │ │ │ │ │ ├── sgglse.f │ │ │ │ │ │ │ ├── sggqrf.f │ │ │ │ │ │ │ ├── sggrqf.f │ │ │ │ │ │ │ ├── sggsvd.f │ │ │ │ │ │ │ ├── sggsvp.f │ │ │ │ │ │ │ ├── sgsvj0.f │ │ │ │ │ │ │ ├── sgsvj1.f │ │ │ │ │ │ │ ├── sgtcon.f │ │ │ │ │ │ │ ├── sgtrfs.f │ │ │ │ │ │ │ ├── sgtsv.f │ │ │ │ │ │ │ ├── sgtsvx.f │ │ │ │ │ │ │ ├── sgttrf.f │ │ │ │ │ │ │ ├── sgttrs.f │ │ │ │ │ │ │ ├── sgtts2.f │ │ │ │ │ │ │ ├── shgeqz.f │ │ │ │ │ │ │ ├── shsein.f │ │ │ │ │ │ │ ├── shseqr.f │ │ │ │ │ │ │ ├── sisnan.f │ │ │ │ │ │ │ ├── sla_gbamv.f │ │ │ │ │ │ │ ├── sla_gbrcond.f │ │ │ │ │ │ │ ├── sla_gbrfsx_extended.f │ │ │ │ │ │ │ ├── sla_gbrpvgrw.f │ │ │ │ │ │ │ ├── sla_geamv.f │ │ │ │ │ │ │ ├── sla_gercond.f │ │ │ │ │ │ │ ├── sla_gerfsx_extended.f │ │ │ │ │ │ │ ├── sla_gerpvgrw.f │ │ │ │ │ │ │ ├── sla_lin_berr.f │ │ │ │ │ │ │ ├── sla_porcond.f │ │ │ │ │ │ │ ├── sla_porfsx_extended.f │ │ │ │ │ │ │ ├── sla_porpvgrw.f │ │ │ │ │ │ │ ├── sla_syamv.f │ │ │ │ │ │ │ ├── sla_syrcond.f │ │ │ │ │ │ │ ├── sla_syrfsx_extended.f │ │ │ │ │ │ │ ├── sla_syrpvgrw.f │ │ │ │ │ │ │ ├── sla_wwaddw.f │ │ │ │ │ │ │ ├── slabad.f │ │ │ │ │ │ │ ├── slabrd.f │ │ │ │ │ │ │ ├── slacn2.f │ │ │ │ │ │ │ ├── slacon.f │ │ │ │ │ │ │ ├── slacpy.f │ │ │ │ │ │ │ ├── sladiv.f │ │ │ │ │ │ │ ├── slae2.f │ │ │ │ │ │ │ ├── slaebz.f │ │ │ │ │ │ │ ├── slaed0.f │ │ │ │ │ │ │ ├── slaed1.f │ │ │ │ │ │ │ ├── slaed2.f │ │ │ │ │ │ │ ├── slaed3.f │ │ │ │ │ │ │ ├── slaed4.f │ │ │ │ │ │ │ ├── slaed5.f │ │ │ │ │ │ │ ├── slaed6.f │ │ │ │ │ │ │ ├── slaed7.f │ │ │ │ │ │ │ ├── slaed8.f │ │ │ │ │ │ │ ├── slaed9.f │ │ │ │ │ │ │ ├── slaeda.f │ │ │ │ │ │ │ ├── slaein.f │ │ │ │ │ │ │ ├── slaev2.f │ │ │ │ │ │ │ ├── slaexc.f │ │ │ │ │ │ │ ├── slag2.f │ │ │ │ │ │ │ ├── slag2d.f │ │ │ │ │ │ │ ├── slags2.f │ │ │ │ │ │ │ ├── slagtf.f │ │ │ │ │ │ │ ├── slagtm.f │ │ │ │ │ │ │ ├── slagts.f │ │ │ │ │ │ │ ├── slagv2.f │ │ │ │ │ │ │ ├── slahqr.f │ │ │ │ │ │ │ ├── slahr2.f │ │ │ │ │ │ │ ├── slahrd.f │ │ │ │ │ │ │ ├── slaic1.f │ │ │ │ │ │ │ ├── slaisnan.f │ │ │ │ │ │ │ ├── slaln2.f │ │ │ │ │ │ │ ├── slals0.f │ │ │ │ │ │ │ ├── slalsa.f │ │ │ │ │ │ │ ├── slalsd.f │ │ │ │ │ │ │ ├── slamrg.f │ │ │ │ │ │ │ ├── slaneg.f │ │ │ │ │ │ │ ├── slangb.f │ │ │ │ │ │ │ ├── slange.f │ │ │ │ │ │ │ ├── slangt.f │ │ │ │ │ │ │ ├── slanhs.f │ │ │ │ │ │ │ ├── slansb.f │ │ │ │ │ │ │ ├── slansf.f │ │ │ │ │ │ │ ├── slansp.f │ │ │ │ │ │ │ ├── slanst.f │ │ │ │ │ │ │ ├── slansy.f │ │ │ │ │ │ │ ├── slantb.f │ │ │ │ │ │ │ ├── slantp.f │ │ │ │ │ │ │ ├── slantr.f │ │ │ │ │ │ │ ├── slanv2.f │ │ │ │ │ │ │ ├── slapll.f │ │ │ │ │ │ │ ├── slapmr.f │ │ │ │ │ │ │ ├── slapmt.f │ │ │ │ │ │ │ ├── slapy2.f │ │ │ │ │ │ │ ├── slapy3.f │ │ │ │ │ │ │ ├── slaqgb.f │ │ │ │ │ │ │ ├── slaqge.f │ │ │ │ │ │ │ ├── slaqp2.f │ │ │ │ │ │ │ ├── slaqps.f │ │ │ │ │ │ │ ├── slaqr0.f │ │ │ │ │ │ │ ├── slaqr1.f │ │ │ │ │ │ │ ├── slaqr2.f │ │ │ │ │ │ │ ├── slaqr3.f │ │ │ │ │ │ │ ├── slaqr4.f │ │ │ │ │ │ │ ├── slaqr5.f │ │ │ │ │ │ │ ├── slaqsb.f │ │ │ │ │ │ │ ├── slaqsp.f │ │ │ │ │ │ │ ├── slaqsy.f │ │ │ │ │ │ │ ├── slaqtr.f │ │ │ │ │ │ │ ├── slar1v.f │ │ │ │ │ │ │ ├── slar2v.f │ │ │ │ │ │ │ ├── slarf.f │ │ │ │ │ │ │ ├── slarfb.f │ │ │ │ │ │ │ ├── slarfg.f │ │ │ │ │ │ │ ├── slarfgp.f │ │ │ │ │ │ │ ├── slarft.f │ │ │ │ │ │ │ ├── slarfx.f │ │ │ │ │ │ │ ├── slargv.f │ │ │ │ │ │ │ ├── slarnv.f │ │ │ │ │ │ │ ├── slarra.f │ │ │ │ │ │ │ ├── slarrb.f │ │ │ │ │ │ │ ├── slarrc.f │ │ │ │ │ │ │ ├── slarrd.f │ │ │ │ │ │ │ ├── slarre.f │ │ │ │ │ │ │ ├── slarrf.f │ │ │ │ │ │ │ ├── slarrj.f │ │ │ │ │ │ │ ├── slarrk.f │ │ │ │ │ │ │ ├── slarrr.f │ │ │ │ │ │ │ ├── slarrv.f │ │ │ │ │ │ │ ├── slarscl2.f │ │ │ │ │ │ │ ├── slartg.f │ │ │ │ │ │ │ ├── slartgp.f │ │ │ │ │ │ │ ├── slartgs.f │ │ │ │ │ │ │ ├── slartv.f │ │ │ │ │ │ │ ├── slaruv.f │ │ │ │ │ │ │ ├── slarz.f │ │ │ │ │ │ │ ├── slarzb.f │ │ │ │ │ │ │ ├── slarzt.f │ │ │ │ │ │ │ ├── slas2.f │ │ │ │ │ │ │ ├── slascl.f │ │ │ │ │ │ │ ├── slascl2.f │ │ │ │ │ │ │ ├── slasd0.f │ │ │ │ │ │ │ ├── slasd1.f │ │ │ │ │ │ │ ├── slasd2.f │ │ │ │ │ │ │ ├── slasd3.f │ │ │ │ │ │ │ ├── slasd4.f │ │ │ │ │ │ │ ├── slasd5.f │ │ │ │ │ │ │ ├── slasd6.f │ │ │ │ │ │ │ ├── slasd7.f │ │ │ │ │ │ │ ├── slasd8.f │ │ │ │ │ │ │ ├── slasda.f │ │ │ │ │ │ │ ├── slasdq.f │ │ │ │ │ │ │ ├── slasdt.f │ │ │ │ │ │ │ ├── slaset.f │ │ │ │ │ │ │ ├── slasq1.f │ │ │ │ │ │ │ ├── slasq2.f │ │ │ │ │ │ │ ├── slasq3.f │ │ │ │ │ │ │ ├── slasq4.f │ │ │ │ │ │ │ ├── slasq5.f │ │ │ │ │ │ │ ├── slasq6.f │ │ │ │ │ │ │ ├── slasr.f │ │ │ │ │ │ │ ├── slasrt.f │ │ │ │ │ │ │ ├── slassq.f │ │ │ │ │ │ │ ├── slasv2.f │ │ │ │ │ │ │ ├── slaswp.f │ │ │ │ │ │ │ ├── slasy2.f │ │ │ │ │ │ │ ├── slasyf.f │ │ │ │ │ │ │ ├── slatbs.f │ │ │ │ │ │ │ ├── slatdf.f │ │ │ │ │ │ │ ├── slatps.f │ │ │ │ │ │ │ ├── slatrd.f │ │ │ │ │ │ │ ├── slatrs.f │ │ │ │ │ │ │ ├── slatrz.f │ │ │ │ │ │ │ ├── slatzm.f │ │ │ │ │ │ │ ├── slauu2.f │ │ │ │ │ │ │ ├── slauum.f │ │ │ │ │ │ │ ├── sopgtr.f │ │ │ │ │ │ │ ├── sopmtr.f │ │ │ │ │ │ │ ├── sorbdb.f │ │ │ │ │ │ │ ├── sorcsd.f │ │ │ │ │ │ │ ├── sorg2l.f │ │ │ │ │ │ │ ├── sorg2r.f │ │ │ │ │ │ │ ├── sorgbr.f │ │ │ │ │ │ │ ├── sorghr.f │ │ │ │ │ │ │ ├── sorgl2.f │ │ │ │ │ │ │ ├── sorglq.f │ │ │ │ │ │ │ ├── sorgql.f │ │ │ │ │ │ │ ├── sorgqr.f │ │ │ │ │ │ │ ├── sorgr2.f │ │ │ │ │ │ │ ├── sorgrq.f │ │ │ │ │ │ │ ├── sorgtr.f │ │ │ │ │ │ │ ├── sorm2l.f │ │ │ │ │ │ │ ├── sorm2r.f │ │ │ │ │ │ │ ├── sormbr.f │ │ │ │ │ │ │ ├── sormhr.f │ │ │ │ │ │ │ ├── sorml2.f │ │ │ │ │ │ │ ├── sormlq.f │ │ │ │ │ │ │ ├── sormql.f │ │ │ │ │ │ │ ├── sormqr.f │ │ │ │ │ │ │ ├── sormr2.f │ │ │ │ │ │ │ ├── sormr3.f │ │ │ │ │ │ │ ├── sormrq.f │ │ │ │ │ │ │ ├── sormrz.f │ │ │ │ │ │ │ ├── sormtr.f │ │ │ │ │ │ │ ├── spbcon.f │ │ │ │ │ │ │ ├── spbequ.f │ │ │ │ │ │ │ ├── spbrfs.f │ │ │ │ │ │ │ ├── spbstf.f │ │ │ │ │ │ │ ├── spbsv.f │ │ │ │ │ │ │ ├── spbsvx.f │ │ │ │ │ │ │ ├── spbtf2.f │ │ │ │ │ │ │ ├── spbtrf.f │ │ │ │ │ │ │ ├── spbtrs.f │ │ │ │ │ │ │ ├── spftrf.f │ │ │ │ │ │ │ ├── spftri.f │ │ │ │ │ │ │ ├── spftrs.f │ │ │ │ │ │ │ ├── spocon.f │ │ │ │ │ │ │ ├── spoequ.f │ │ │ │ │ │ │ ├── spoequb.f │ │ │ │ │ │ │ ├── sporfs.f │ │ │ │ │ │ │ ├── sporfsx.f │ │ │ │ │ │ │ ├── sposv.f │ │ │ │ │ │ │ ├── sposvx.f │ │ │ │ │ │ │ ├── sposvxx.f │ │ │ │ │ │ │ ├── spotf2.f │ │ │ │ │ │ │ ├── spotrf.f │ │ │ │ │ │ │ ├── spotri.f │ │ │ │ │ │ │ ├── spotrs.f │ │ │ │ │ │ │ ├── sppcon.f │ │ │ │ │ │ │ ├── sppequ.f │ │ │ │ │ │ │ ├── spprfs.f │ │ │ │ │ │ │ ├── sppsv.f │ │ │ │ │ │ │ ├── sppsvx.f │ │ │ │ │ │ │ ├── spptrf.f │ │ │ │ │ │ │ ├── spptri.f │ │ │ │ │ │ │ ├── spptrs.f │ │ │ │ │ │ │ ├── spstf2.f │ │ │ │ │ │ │ ├── spstrf.f │ │ │ │ │ │ │ ├── sptcon.f │ │ │ │ │ │ │ ├── spteqr.f │ │ │ │ │ │ │ ├── sptrfs.f │ │ │ │ │ │ │ ├── sptsv.f │ │ │ │ │ │ │ ├── sptsvx.f │ │ │ │ │ │ │ ├── spttrf.f │ │ │ │ │ │ │ ├── spttrs.f │ │ │ │ │ │ │ ├── sptts2.f │ │ │ │ │ │ │ ├── srscl.f │ │ │ │ │ │ │ ├── ssbev.f │ │ │ │ │ │ │ ├── ssbevd.f │ │ │ │ │ │ │ ├── ssbevx.f │ │ │ │ │ │ │ ├── ssbgst.f │ │ │ │ │ │ │ ├── ssbgv.f │ │ │ │ │ │ │ ├── ssbgvd.f │ │ │ │ │ │ │ ├── ssbgvx.f │ │ │ │ │ │ │ ├── ssbtrd.f │ │ │ │ │ │ │ ├── ssfrk.f │ │ │ │ │ │ │ ├── sspcon.f │ │ │ │ │ │ │ ├── sspev.f │ │ │ │ │ │ │ ├── sspevd.f │ │ │ │ │ │ │ ├── sspevx.f │ │ │ │ │ │ │ ├── sspgst.f │ │ │ │ │ │ │ ├── sspgv.f │ │ │ │ │ │ │ ├── sspgvd.f │ │ │ │ │ │ │ ├── sspgvx.f │ │ │ │ │ │ │ ├── ssprfs.f │ │ │ │ │ │ │ ├── sspsv.f │ │ │ │ │ │ │ ├── sspsvx.f │ │ │ │ │ │ │ ├── ssptrd.f │ │ │ │ │ │ │ ├── ssptrf.f │ │ │ │ │ │ │ ├── ssptri.f │ │ │ │ │ │ │ ├── ssptrs.f │ │ │ │ │ │ │ ├── sstebz.f │ │ │ │ │ │ │ ├── sstedc.f │ │ │ │ │ │ │ ├── sstegr.f │ │ │ │ │ │ │ ├── sstein.f │ │ │ │ │ │ │ ├── sstemr.f │ │ │ │ │ │ │ ├── ssteqr.f │ │ │ │ │ │ │ ├── ssterf.f │ │ │ │ │ │ │ ├── sstev.f │ │ │ │ │ │ │ ├── sstevd.f │ │ │ │ │ │ │ ├── sstevr.f │ │ │ │ │ │ │ ├── sstevx.f │ │ │ │ │ │ │ ├── ssycon.f │ │ │ │ │ │ │ ├── ssyconv.f │ │ │ │ │ │ │ ├── ssyequb.f │ │ │ │ │ │ │ ├── ssyev.f │ │ │ │ │ │ │ ├── ssyevd.f │ │ │ │ │ │ │ ├── ssyevr.f │ │ │ │ │ │ │ ├── ssyevx.f │ │ │ │ │ │ │ ├── ssygs2.f │ │ │ │ │ │ │ ├── ssygst.f │ │ │ │ │ │ │ ├── ssygv.f │ │ │ │ │ │ │ ├── ssygvd.f │ │ │ │ │ │ │ ├── ssygvx.f │ │ │ │ │ │ │ ├── ssyrfs.f │ │ │ │ │ │ │ ├── ssyrfsx.f │ │ │ │ │ │ │ ├── ssysv.f │ │ │ │ │ │ │ ├── ssysvx.f │ │ │ │ │ │ │ ├── ssysvxx.f │ │ │ │ │ │ │ ├── ssyswapr.f │ │ │ │ │ │ │ ├── ssytd2.f │ │ │ │ │ │ │ ├── ssytf2.f │ │ │ │ │ │ │ ├── ssytrd.f │ │ │ │ │ │ │ ├── ssytrf.f │ │ │ │ │ │ │ ├── ssytri.f │ │ │ │ │ │ │ ├── ssytri2.f │ │ │ │ │ │ │ ├── ssytri2x.f │ │ │ │ │ │ │ ├── ssytrs.f │ │ │ │ │ │ │ ├── ssytrs2.f │ │ │ │ │ │ │ ├── stbcon.f │ │ │ │ │ │ │ ├── stbrfs.f │ │ │ │ │ │ │ ├── stbtrs.f │ │ │ │ │ │ │ ├── stfsm.f │ │ │ │ │ │ │ ├── stftri.f │ │ │ │ │ │ │ ├── stfttp.f │ │ │ │ │ │ │ ├── stfttr.f │ │ │ │ │ │ │ ├── stgevc.f │ │ │ │ │ │ │ ├── stgex2.f │ │ │ │ │ │ │ ├── stgexc.f │ │ │ │ │ │ │ ├── stgsen.f │ │ │ │ │ │ │ ├── stgsja.f │ │ │ │ │ │ │ ├── stgsna.f │ │ │ │ │ │ │ ├── stgsy2.f │ │ │ │ │ │ │ ├── stgsyl.f │ │ │ │ │ │ │ ├── stpcon.f │ │ │ │ │ │ │ ├── stpmqrt.f │ │ │ │ │ │ │ ├── stpqrt.f │ │ │ │ │ │ │ ├── stpqrt2.f │ │ │ │ │ │ │ ├── stprfb.f │ │ │ │ │ │ │ ├── stprfs.f │ │ │ │ │ │ │ ├── stptri.f │ │ │ │ │ │ │ ├── stptrs.f │ │ │ │ │ │ │ ├── stpttf.f │ │ │ │ │ │ │ ├── stpttr.f │ │ │ │ │ │ │ ├── strcon.f │ │ │ │ │ │ │ ├── strevc.f │ │ │ │ │ │ │ ├── strexc.f │ │ │ │ │ │ │ ├── strrfs.f │ │ │ │ │ │ │ ├── strsen.f │ │ │ │ │ │ │ ├── strsna.f │ │ │ │ │ │ │ ├── strsyl.f │ │ │ │ │ │ │ ├── strti2.f │ │ │ │ │ │ │ ├── strtri.f │ │ │ │ │ │ │ ├── strtrs.f │ │ │ │ │ │ │ ├── strttf.f │ │ │ │ │ │ │ ├── strttp.f │ │ │ │ │ │ │ ├── stzrqf.f │ │ │ │ │ │ │ ├── stzrzf.f │ │ │ │ │ │ │ ├── xerbla.f │ │ │ │ │ │ │ ├── xerbla_array.f │ │ │ │ │ │ │ ├── zbbcsd.f │ │ │ │ │ │ │ ├── zbdsqr.f │ │ │ │ │ │ │ ├── zcgesv.f │ │ │ │ │ │ │ ├── zcposv.f │ │ │ │ │ │ │ ├── zdrscl.f │ │ │ │ │ │ │ ├── zgbbrd.f │ │ │ │ │ │ │ ├── zgbcon.f │ │ │ │ │ │ │ ├── zgbequ.f │ │ │ │ │ │ │ ├── zgbequb.f │ │ │ │ │ │ │ ├── zgbrfs.f │ │ │ │ │ │ │ ├── zgbrfsx.f │ │ │ │ │ │ │ ├── zgbsv.f │ │ │ │ │ │ │ ├── zgbsvx.f │ │ │ │ │ │ │ ├── zgbsvxx.f │ │ │ │ │ │ │ ├── zgbtf2.f │ │ │ │ │ │ │ ├── zgbtrf.f │ │ │ │ │ │ │ ├── zgbtrs.f │ │ │ │ │ │ │ ├── zgebak.f │ │ │ │ │ │ │ ├── zgebal.f │ │ │ │ │ │ │ ├── zgebd2.f │ │ │ │ │ │ │ ├── zgebrd.f │ │ │ │ │ │ │ ├── zgecon.f │ │ │ │ │ │ │ ├── zgeequ.f │ │ │ │ │ │ │ ├── zgeequb.f │ │ │ │ │ │ │ ├── zgees.f │ │ │ │ │ │ │ ├── zgeesx.f │ │ │ │ │ │ │ ├── zgeev.f │ │ │ │ │ │ │ ├── zgeevx.f │ │ │ │ │ │ │ ├── zgegs.f │ │ │ │ │ │ │ ├── zgegv.f │ │ │ │ │ │ │ ├── zgehd2.f │ │ │ │ │ │ │ ├── zgehrd.f │ │ │ │ │ │ │ ├── zgelq2.f │ │ │ │ │ │ │ ├── zgelqf.f │ │ │ │ │ │ │ ├── zgels.f │ │ │ │ │ │ │ ├── zgelsd.f │ │ │ │ │ │ │ ├── zgelss.f │ │ │ │ │ │ │ ├── zgelsx.f │ │ │ │ │ │ │ ├── zgelsy.f │ │ │ │ │ │ │ ├── zgemqrt.f │ │ │ │ │ │ │ ├── zgeql2.f │ │ │ │ │ │ │ ├── zgeqlf.f │ │ │ │ │ │ │ ├── zgeqp3.f │ │ │ │ │ │ │ ├── zgeqpf.f │ │ │ │ │ │ │ ├── zgeqr2.f │ │ │ │ │ │ │ ├── zgeqr2p.f │ │ │ │ │ │ │ ├── zgeqrf.f │ │ │ │ │ │ │ ├── zgeqrfp.f │ │ │ │ │ │ │ ├── zgeqrt.f │ │ │ │ │ │ │ ├── zgeqrt2.f │ │ │ │ │ │ │ ├── zgeqrt3.f │ │ │ │ │ │ │ ├── zgerfs.f │ │ │ │ │ │ │ ├── zgerfsx.f │ │ │ │ │ │ │ ├── zgerq2.f │ │ │ │ │ │ │ ├── zgerqf.f │ │ │ │ │ │ │ ├── zgesc2.f │ │ │ │ │ │ │ ├── zgesdd.f │ │ │ │ │ │ │ ├── zgesv.f │ │ │ │ │ │ │ ├── zgesvd.f │ │ │ │ │ │ │ ├── zgesvx.f │ │ │ │ │ │ │ ├── zgesvxx.f │ │ │ │ │ │ │ ├── zgetc2.f │ │ │ │ │ │ │ ├── zgetf2.f │ │ │ │ │ │ │ ├── zgetrf.f │ │ │ │ │ │ │ ├── zgetri.f │ │ │ │ │ │ │ ├── zgetrs.f │ │ │ │ │ │ │ ├── zggbak.f │ │ │ │ │ │ │ ├── zggbal.f │ │ │ │ │ │ │ ├── zgges.f │ │ │ │ │ │ │ ├── zggesx.f │ │ │ │ │ │ │ ├── zggev.f │ │ │ │ │ │ │ ├── zggevx.f │ │ │ │ │ │ │ ├── zggglm.f │ │ │ │ │ │ │ ├── zgghrd.f │ │ │ │ │ │ │ ├── zgglse.f │ │ │ │ │ │ │ ├── zggqrf.f │ │ │ │ │ │ │ ├── zggrqf.f │ │ │ │ │ │ │ ├── zggsvd.f │ │ │ │ │ │ │ ├── zggsvp.f │ │ │ │ │ │ │ ├── zgtcon.f │ │ │ │ │ │ │ ├── zgtrfs.f │ │ │ │ │ │ │ ├── zgtsv.f │ │ │ │ │ │ │ ├── zgtsvx.f │ │ │ │ │ │ │ ├── zgttrf.f │ │ │ │ │ │ │ ├── zgttrs.f │ │ │ │ │ │ │ ├── zgtts2.f │ │ │ │ │ │ │ ├── zhbev.f │ │ │ │ │ │ │ ├── zhbevd.f │ │ │ │ │ │ │ ├── zhbevx.f │ │ │ │ │ │ │ ├── zhbgst.f │ │ │ │ │ │ │ ├── zhbgv.f │ │ │ │ │ │ │ ├── zhbgvd.f │ │ │ │ │ │ │ ├── zhbgvx.f │ │ │ │ │ │ │ ├── zhbtrd.f │ │ │ │ │ │ │ ├── zhecon.f │ │ │ │ │ │ │ ├── zheequb.f │ │ │ │ │ │ │ ├── zheev.f │ │ │ │ │ │ │ ├── zheevd.f │ │ │ │ │ │ │ ├── zheevr.f │ │ │ │ │ │ │ ├── zheevx.f │ │ │ │ │ │ │ ├── zhegs2.f │ │ │ │ │ │ │ ├── zhegst.f │ │ │ │ │ │ │ ├── zhegv.f │ │ │ │ │ │ │ ├── zhegvd.f │ │ │ │ │ │ │ ├── zhegvx.f │ │ │ │ │ │ │ ├── zherfs.f │ │ │ │ │ │ │ ├── zherfsx.f │ │ │ │ │ │ │ ├── zhesv.f │ │ │ │ │ │ │ ├── zhesvx.f │ │ │ │ │ │ │ ├── zhesvxx.f │ │ │ │ │ │ │ ├── zheswapr.f │ │ │ │ │ │ │ ├── zhetd2.f │ │ │ │ │ │ │ ├── zhetf2.f │ │ │ │ │ │ │ ├── zhetrd.f │ │ │ │ │ │ │ ├── zhetrf.f │ │ │ │ │ │ │ ├── zhetri.f │ │ │ │ │ │ │ ├── zhetri2.f │ │ │ │ │ │ │ ├── zhetri2x.f │ │ │ │ │ │ │ ├── zhetrs.f │ │ │ │ │ │ │ ├── zhetrs2.f │ │ │ │ │ │ │ ├── zhfrk.f │ │ │ │ │ │ │ ├── zhgeqz.f │ │ │ │ │ │ │ ├── zhpcon.f │ │ │ │ │ │ │ ├── zhpev.f │ │ │ │ │ │ │ ├── zhpevd.f │ │ │ │ │ │ │ ├── zhpevx.f │ │ │ │ │ │ │ ├── zhpgst.f │ │ │ │ │ │ │ ├── zhpgv.f │ │ │ │ │ │ │ ├── zhpgvd.f │ │ │ │ │ │ │ ├── zhpgvx.f │ │ │ │ │ │ │ ├── zhprfs.f │ │ │ │ │ │ │ ├── zhpsv.f │ │ │ │ │ │ │ ├── zhpsvx.f │ │ │ │ │ │ │ ├── zhptrd.f │ │ │ │ │ │ │ ├── zhptrf.f │ │ │ │ │ │ │ ├── zhptri.f │ │ │ │ │ │ │ ├── zhptrs.f │ │ │ │ │ │ │ ├── zhsein.f │ │ │ │ │ │ │ ├── zhseqr.f │ │ │ │ │ │ │ ├── zla_gbamv.f │ │ │ │ │ │ │ ├── zla_gbrcond_c.f │ │ │ │ │ │ │ ├── zla_gbrcond_x.f │ │ │ │ │ │ │ ├── zla_gbrfsx_extended.f │ │ │ │ │ │ │ ├── zla_gbrpvgrw.f │ │ │ │ │ │ │ ├── zla_geamv.f │ │ │ │ │ │ │ ├── zla_gercond_c.f │ │ │ │ │ │ │ ├── zla_gercond_x.f │ │ │ │ │ │ │ ├── zla_gerfsx_extended.f │ │ │ │ │ │ │ ├── zla_gerpvgrw.f │ │ │ │ │ │ │ ├── zla_heamv.f │ │ │ │ │ │ │ ├── zla_hercond_c.f │ │ │ │ │ │ │ ├── zla_hercond_x.f │ │ │ │ │ │ │ ├── zla_herfsx_extended.f │ │ │ │ │ │ │ ├── zla_herpvgrw.f │ │ │ │ │ │ │ ├── zla_lin_berr.f │ │ │ │ │ │ │ ├── zla_porcond_c.f │ │ │ │ │ │ │ ├── zla_porcond_x.f │ │ │ │ │ │ │ ├── zla_porfsx_extended.f │ │ │ │ │ │ │ ├── zla_porpvgrw.f │ │ │ │ │ │ │ ├── zla_syamv.f │ │ │ │ │ │ │ ├── zla_syrcond_c.f │ │ │ │ │ │ │ ├── zla_syrcond_x.f │ │ │ │ │ │ │ ├── zla_syrfsx_extended.f │ │ │ │ │ │ │ ├── zla_syrpvgrw.f │ │ │ │ │ │ │ ├── zla_wwaddw.f │ │ │ │ │ │ │ ├── zlabrd.f │ │ │ │ │ │ │ ├── zlacgv.f │ │ │ │ │ │ │ ├── zlacn2.f │ │ │ │ │ │ │ ├── zlacon.f │ │ │ │ │ │ │ ├── zlacp2.f │ │ │ │ │ │ │ ├── zlacpy.f │ │ │ │ │ │ │ ├── zlacrm.f │ │ │ │ │ │ │ ├── zlacrt.f │ │ │ │ │ │ │ ├── zladiv.f │ │ │ │ │ │ │ ├── zlaed0.f │ │ │ │ │ │ │ ├── zlaed7.f │ │ │ │ │ │ │ ├── zlaed8.f │ │ │ │ │ │ │ ├── zlaein.f │ │ │ │ │ │ │ ├── zlaesy.f │ │ │ │ │ │ │ ├── zlaev2.f │ │ │ │ │ │ │ ├── zlag2c.f │ │ │ │ │ │ │ ├── zlags2.f │ │ │ │ │ │ │ ├── zlagtm.f │ │ │ │ │ │ │ ├── zlahef.f │ │ │ │ │ │ │ ├── zlahqr.f │ │ │ │ │ │ │ ├── zlahr2.f │ │ │ │ │ │ │ ├── zlahrd.f │ │ │ │ │ │ │ ├── zlaic1.f │ │ │ │ │ │ │ ├── zlals0.f │ │ │ │ │ │ │ ├── zlalsa.f │ │ │ │ │ │ │ ├── zlalsd.f │ │ │ │ │ │ │ ├── zlangb.f │ │ │ │ │ │ │ ├── zlange.f │ │ │ │ │ │ │ ├── zlangt.f │ │ │ │ │ │ │ ├── zlanhb.f │ │ │ │ │ │ │ ├── zlanhe.f │ │ │ │ │ │ │ ├── zlanhf.f │ │ │ │ │ │ │ ├── zlanhp.f │ │ │ │ │ │ │ ├── zlanhs.f │ │ │ │ │ │ │ ├── zlanht.f │ │ │ │ │ │ │ ├── zlansb.f │ │ │ │ │ │ │ ├── zlansp.f │ │ │ │ │ │ │ ├── zlansy.f │ │ │ │ │ │ │ ├── zlantb.f │ │ │ │ │ │ │ ├── zlantp.f │ │ │ │ │ │ │ ├── zlantr.f │ │ │ │ │ │ │ ├── zlapll.f │ │ │ │ │ │ │ ├── zlapmr.f │ │ │ │ │ │ │ ├── zlapmt.f │ │ │ │ │ │ │ ├── zlaqgb.f │ │ │ │ │ │ │ ├── zlaqge.f │ │ │ │ │ │ │ ├── zlaqhb.f │ │ │ │ │ │ │ ├── zlaqhe.f │ │ │ │ │ │ │ ├── zlaqhp.f │ │ │ │ │ │ │ ├── zlaqp2.f │ │ │ │ │ │ │ ├── zlaqps.f │ │ │ │ │ │ │ ├── zlaqr0.f │ │ │ │ │ │ │ ├── zlaqr1.f │ │ │ │ │ │ │ ├── zlaqr2.f │ │ │ │ │ │ │ ├── zlaqr3.f │ │ │ │ │ │ │ ├── zlaqr4.f │ │ │ │ │ │ │ ├── zlaqr5.f │ │ │ │ │ │ │ ├── zlaqsb.f │ │ │ │ │ │ │ ├── zlaqsp.f │ │ │ │ │ │ │ ├── zlaqsy.f │ │ │ │ │ │ │ ├── zlar1v.f │ │ │ │ │ │ │ ├── zlar2v.f │ │ │ │ │ │ │ ├── zlarcm.f │ │ │ │ │ │ │ ├── zlarf.f │ │ │ │ │ │ │ ├── zlarfb.f │ │ │ │ │ │ │ ├── zlarfg.f │ │ │ │ │ │ │ ├── zlarfgp.f │ │ │ │ │ │ │ ├── zlarft.f │ │ │ │ │ │ │ ├── zlarfx.f │ │ │ │ │ │ │ ├── zlargv.f │ │ │ │ │ │ │ ├── zlarnv.f │ │ │ │ │ │ │ ├── zlarrv.f │ │ │ │ │ │ │ ├── zlarscl2.f │ │ │ │ │ │ │ ├── zlartg.f │ │ │ │ │ │ │ ├── zlartv.f │ │ │ │ │ │ │ ├── zlarz.f │ │ │ │ │ │ │ ├── zlarzb.f │ │ │ │ │ │ │ ├── zlarzt.f │ │ │ │ │ │ │ ├── zlascl.f │ │ │ │ │ │ │ ├── zlascl2.f │ │ │ │ │ │ │ ├── zlaset.f │ │ │ │ │ │ │ ├── zlasr.f │ │ │ │ │ │ │ ├── zlassq.f │ │ │ │ │ │ │ ├── zlaswp.f │ │ │ │ │ │ │ ├── zlasyf.f │ │ │ │ │ │ │ ├── zlat2c.f │ │ │ │ │ │ │ ├── zlatbs.f │ │ │ │ │ │ │ ├── zlatdf.f │ │ │ │ │ │ │ ├── zlatps.f │ │ │ │ │ │ │ ├── zlatrd.f │ │ │ │ │ │ │ ├── zlatrs.f │ │ │ │ │ │ │ ├── zlatrz.f │ │ │ │ │ │ │ ├── zlatzm.f │ │ │ │ │ │ │ ├── zlauu2.f │ │ │ │ │ │ │ ├── zlauum.f │ │ │ │ │ │ │ ├── zpbcon.f │ │ │ │ │ │ │ ├── zpbequ.f │ │ │ │ │ │ │ ├── zpbrfs.f │ │ │ │ │ │ │ ├── zpbstf.f │ │ │ │ │ │ │ ├── zpbsv.f │ │ │ │ │ │ │ ├── zpbsvx.f │ │ │ │ │ │ │ ├── zpbtf2.f │ │ │ │ │ │ │ ├── zpbtrf.f │ │ │ │ │ │ │ ├── zpbtrs.f │ │ │ │ │ │ │ ├── zpftrf.f │ │ │ │ │ │ │ ├── zpftri.f │ │ │ │ │ │ │ ├── zpftrs.f │ │ │ │ │ │ │ ├── zpocon.f │ │ │ │ │ │ │ ├── zpoequ.f │ │ │ │ │ │ │ ├── zpoequb.f │ │ │ │ │ │ │ ├── zporfs.f │ │ │ │ │ │ │ ├── zporfsx.f │ │ │ │ │ │ │ ├── zposv.f │ │ │ │ │ │ │ ├── zposvx.f │ │ │ │ │ │ │ ├── zposvxx.f │ │ │ │ │ │ │ ├── zpotf2.f │ │ │ │ │ │ │ ├── zpotrf.f │ │ │ │ │ │ │ ├── zpotri.f │ │ │ │ │ │ │ ├── zpotrs.f │ │ │ │ │ │ │ ├── zppcon.f │ │ │ │ │ │ │ ├── zppequ.f │ │ │ │ │ │ │ ├── zpprfs.f │ │ │ │ │ │ │ ├── zppsv.f │ │ │ │ │ │ │ ├── zppsvx.f │ │ │ │ │ │ │ ├── zpptrf.f │ │ │ │ │ │ │ ├── zpptri.f │ │ │ │ │ │ │ ├── zpptrs.f │ │ │ │ │ │ │ ├── zpstf2.f │ │ │ │ │ │ │ ├── zpstrf.f │ │ │ │ │ │ │ ├── zptcon.f │ │ │ │ │ │ │ ├── zpteqr.f │ │ │ │ │ │ │ ├── zptrfs.f │ │ │ │ │ │ │ ├── zptsv.f │ │ │ │ │ │ │ ├── zptsvx.f │ │ │ │ │ │ │ ├── zpttrf.f │ │ │ │ │ │ │ ├── zpttrs.f │ │ │ │ │ │ │ ├── zptts2.f │ │ │ │ │ │ │ ├── zrot.f │ │ │ │ │ │ │ ├── zspcon.f │ │ │ │ │ │ │ ├── zspmv.f │ │ │ │ │ │ │ ├── zspr.f │ │ │ │ │ │ │ ├── zsprfs.f │ │ │ │ │ │ │ ├── zspsv.f │ │ │ │ │ │ │ ├── zspsvx.f │ │ │ │ │ │ │ ├── zsptrf.f │ │ │ │ │ │ │ ├── zsptri.f │ │ │ │ │ │ │ ├── zsptrs.f │ │ │ │ │ │ │ ├── zstedc.f │ │ │ │ │ │ │ ├── zstegr.f │ │ │ │ │ │ │ ├── zstein.f │ │ │ │ │ │ │ ├── zstemr.f │ │ │ │ │ │ │ ├── zsteqr.f │ │ │ │ │ │ │ ├── zsycon.f │ │ │ │ │ │ │ ├── zsyconv.f │ │ │ │ │ │ │ ├── zsyequb.f │ │ │ │ │ │ │ ├── zsymv.f │ │ │ │ │ │ │ ├── zsyr.f │ │ │ │ │ │ │ ├── zsyrfs.f │ │ │ │ │ │ │ ├── zsyrfsx.f │ │ │ │ │ │ │ ├── zsysv.f │ │ │ │ │ │ │ ├── zsysvx.f │ │ │ │ │ │ │ ├── zsysvxx.f │ │ │ │ │ │ │ ├── zsyswapr.f │ │ │ │ │ │ │ ├── zsytf2.f │ │ │ │ │ │ │ ├── zsytrf.f │ │ │ │ │ │ │ ├── zsytri.f │ │ │ │ │ │ │ ├── zsytri2.f │ │ │ │ │ │ │ ├── zsytri2x.f │ │ │ │ │ │ │ ├── zsytrs.f │ │ │ │ │ │ │ ├── zsytrs2.f │ │ │ │ │ │ │ ├── ztbcon.f │ │ │ │ │ │ │ ├── ztbrfs.f │ │ │ │ │ │ │ ├── ztbtrs.f │ │ │ │ │ │ │ ├── ztfsm.f │ │ │ │ │ │ │ ├── ztftri.f │ │ │ │ │ │ │ ├── ztfttp.f │ │ │ │ │ │ │ ├── ztfttr.f │ │ │ │ │ │ │ ├── ztgevc.f │ │ │ │ │ │ │ ├── ztgex2.f │ │ │ │ │ │ │ ├── ztgexc.f │ │ │ │ │ │ │ ├── ztgsen.f │ │ │ │ │ │ │ ├── ztgsja.f │ │ │ │ │ │ │ ├── ztgsna.f │ │ │ │ │ │ │ ├── ztgsy2.f │ │ │ │ │ │ │ ├── ztgsyl.f │ │ │ │ │ │ │ ├── ztpcon.f │ │ │ │ │ │ │ ├── ztpmqrt.f │ │ │ │ │ │ │ ├── ztpqrt.f │ │ │ │ │ │ │ ├── ztpqrt2.f │ │ │ │ │ │ │ ├── ztprfb.f │ │ │ │ │ │ │ ├── ztprfs.f │ │ │ │ │ │ │ ├── ztptri.f │ │ │ │ │ │ │ ├── ztptrs.f │ │ │ │ │ │ │ ├── ztpttf.f │ │ │ │ │ │ │ ├── ztpttr.f │ │ │ │ │ │ │ ├── ztrcon.f │ │ │ │ │ │ │ ├── ztrevc.f │ │ │ │ │ │ │ ├── ztrexc.f │ │ │ │ │ │ │ ├── ztrrfs.f │ │ │ │ │ │ │ ├── ztrsen.f │ │ │ │ │ │ │ ├── ztrsna.f │ │ │ │ │ │ │ ├── ztrsyl.f │ │ │ │ │ │ │ ├── ztrti2.f │ │ │ │ │ │ │ ├── ztrtri.f │ │ │ │ │ │ │ ├── ztrtrs.f │ │ │ │ │ │ │ ├── ztrttf.f │ │ │ │ │ │ │ ├── ztrttp.f │ │ │ │ │ │ │ ├── ztzrqf.f │ │ │ │ │ │ │ ├── ztzrzf.f │ │ │ │ │ │ │ ├── zunbdb.f │ │ │ │ │ │ │ ├── zuncsd.f │ │ │ │ │ │ │ ├── zung2l.f │ │ │ │ │ │ │ ├── zung2r.f │ │ │ │ │ │ │ ├── zungbr.f │ │ │ │ │ │ │ ├── zunghr.f │ │ │ │ │ │ │ ├── zungl2.f │ │ │ │ │ │ │ ├── zunglq.f │ │ │ │ │ │ │ ├── zungql.f │ │ │ │ │ │ │ ├── zungqr.f │ │ │ │ │ │ │ ├── zungr2.f │ │ │ │ │ │ │ ├── zungrq.f │ │ │ │ │ │ │ ├── zungtr.f │ │ │ │ │ │ │ ├── zunm2l.f │ │ │ │ │ │ │ ├── zunm2r.f │ │ │ │ │ │ │ ├── zunmbr.f │ │ │ │ │ │ │ ├── zunmhr.f │ │ │ │ │ │ │ ├── zunml2.f │ │ │ │ │ │ │ ├── zunmlq.f │ │ │ │ │ │ │ ├── zunmql.f │ │ │ │ │ │ │ ├── zunmqr.f │ │ │ │ │ │ │ ├── zunmr2.f │ │ │ │ │ │ │ ├── zunmr3.f │ │ │ │ │ │ │ ├── zunmrq.f │ │ │ │ │ │ │ ├── zunmrz.f │ │ │ │ │ │ │ ├── zunmtr.f │ │ │ │ │ │ │ ├── zupgtr.f │ │ │ │ │ │ │ └── zupmtr.f │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── coinlapack-uninstalled.pc.in │ │ │ │ │ ├── coinlapack.pc.in │ │ │ │ │ ├── config.guess │ │ │ │ │ ├── config.sub │ │ │ │ │ ├── configure │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── depcomp │ │ │ │ │ ├── get.Lapack │ │ │ │ │ ├── install-sh │ │ │ │ │ ├── ltmain.sh │ │ │ │ │ └── missing │ │ │ │ ├── Metis │ │ │ │ │ ├── INSTALL.Metis │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── coinmetis-uninstalled.pc.in │ │ │ │ │ ├── coinmetis.pc.in │ │ │ │ │ ├── config.guess │ │ │ │ │ ├── config.sub │ │ │ │ │ ├── configure │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── depcomp │ │ │ │ │ ├── get.Metis │ │ │ │ │ ├── install-sh │ │ │ │ │ ├── ltmain.sh │ │ │ │ │ ├── metis-4.0 │ │ │ │ │ │ ├── CHANGES │ │ │ │ │ │ ├── Doc │ │ │ │ │ │ │ └── manual.ps │ │ │ │ │ │ ├── FILES │ │ │ │ │ │ ├── Graphs │ │ │ │ │ │ │ ├── 0README │ │ │ │ │ │ │ ├── 4elt.graph │ │ │ │ │ │ │ ├── 4elt.graph.part.10 │ │ │ │ │ │ │ ├── metis.mesh │ │ │ │ │ │ │ └── test.mgraph │ │ │ │ │ │ ├── INSTALL │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Lib │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── balance.c │ │ │ │ │ │ │ ├── bucketsort.c │ │ │ │ │ │ │ ├── ccgraph.c │ │ │ │ │ │ │ ├── coarsen.c │ │ │ │ │ │ │ ├── compress.c │ │ │ │ │ │ │ ├── debug.c │ │ │ │ │ │ │ ├── defs.h │ │ │ │ │ │ │ ├── estmem.c │ │ │ │ │ │ │ ├── fm.c │ │ │ │ │ │ │ ├── fortran.c │ │ │ │ │ │ │ ├── frename.c │ │ │ │ │ │ │ ├── graph.c │ │ │ │ │ │ │ ├── initpart.c │ │ │ │ │ │ │ ├── kmetis.c │ │ │ │ │ │ │ ├── kvmetis.c │ │ │ │ │ │ │ ├── kwayfm.c │ │ │ │ │ │ │ ├── kwayrefine.c │ │ │ │ │ │ │ ├── kwayvolfm.c │ │ │ │ │ │ │ ├── kwayvolrefine.c │ │ │ │ │ │ │ ├── macros.h │ │ │ │ │ │ │ ├── match.c │ │ │ │ │ │ │ ├── mbalance.c │ │ │ │ │ │ │ ├── mbalance2.c │ │ │ │ │ │ │ ├── mcoarsen.c │ │ │ │ │ │ │ ├── memory.c │ │ │ │ │ │ │ ├── mesh.c │ │ │ │ │ │ │ ├── meshpart.c │ │ │ │ │ │ │ ├── metis.h │ │ │ │ │ │ │ ├── mfm.c │ │ │ │ │ │ │ ├── mfm2.c │ │ │ │ │ │ │ ├── mincover.c │ │ │ │ │ │ │ ├── minitpart.c │ │ │ │ │ │ │ ├── minitpart2.c │ │ │ │ │ │ │ ├── mkmetis.c │ │ │ │ │ │ │ ├── mkwayfmh.c │ │ │ │ │ │ │ ├── mkwayrefine.c │ │ │ │ │ │ │ ├── mmatch.c │ │ │ │ │ │ │ ├── mmd.c │ │ │ │ │ │ │ ├── mpmetis.c │ │ │ │ │ │ │ ├── mrefine.c │ │ │ │ │ │ │ ├── mrefine2.c │ │ │ │ │ │ │ ├── mutil.c │ │ │ │ │ │ │ ├── myqsort.c │ │ │ │ │ │ │ ├── ometis.c │ │ │ │ │ │ │ ├── parmetis.c │ │ │ │ │ │ │ ├── pmetis.c │ │ │ │ │ │ │ ├── pqueue.c │ │ │ │ │ │ │ ├── proto.h │ │ │ │ │ │ │ ├── refine.c │ │ │ │ │ │ │ ├── rename.h │ │ │ │ │ │ │ ├── separator.c │ │ │ │ │ │ │ ├── sfm.c │ │ │ │ │ │ │ ├── srefine.c │ │ │ │ │ │ │ ├── stat.c │ │ │ │ │ │ │ ├── struct.h │ │ │ │ │ │ │ ├── subdomains.c │ │ │ │ │ │ │ ├── timing.c │ │ │ │ │ │ │ └── util.c │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Programs │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── graphchk.c │ │ │ │ │ │ │ ├── io.c │ │ │ │ │ │ │ ├── kmetis.c │ │ │ │ │ │ │ ├── mesh2dual.c │ │ │ │ │ │ │ ├── mesh2nodal.c │ │ │ │ │ │ │ ├── oemetis.c │ │ │ │ │ │ │ ├── onmetis.c │ │ │ │ │ │ │ ├── partdmesh.c │ │ │ │ │ │ │ ├── partnmesh.c │ │ │ │ │ │ │ ├── pmetis.c │ │ │ │ │ │ │ └── smbfactor.c │ │ │ │ │ │ ├── Test │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ └── mtest.c │ │ │ │ │ │ └── VERSION │ │ │ │ │ └── missing │ │ │ │ └── Mumps │ │ │ │ │ ├── .deps │ │ │ │ │ ├── elapse.Plo │ │ │ │ │ ├── mpic.Plo │ │ │ │ │ ├── mumps_c.Plo │ │ │ │ │ ├── mumps_common.Plo │ │ │ │ │ ├── mumps_io.Plo │ │ │ │ │ ├── mumps_io_basic.Plo │ │ │ │ │ ├── mumps_io_err.Plo │ │ │ │ │ ├── mumps_io_thread.Plo │ │ │ │ │ ├── mumps_orderings.Plo │ │ │ │ │ └── mumps_size.Plo │ │ │ │ │ ├── INSTALL.MUMPS │ │ │ │ │ ├── MUMPS_4.10.0.tar │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── coinmumps-uninstalled.pc │ │ │ │ │ ├── coinmumps-uninstalled.pc.in │ │ │ │ │ ├── coinmumps.pc │ │ │ │ │ ├── coinmumps.pc.in │ │ │ │ │ ├── config.guess │ │ │ │ │ ├── config.log │ │ │ │ │ ├── config.status │ │ │ │ │ ├── config.sub │ │ │ │ │ ├── configure │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── depcomp │ │ │ │ │ ├── get.Mumps │ │ │ │ │ ├── install-sh │ │ │ │ │ ├── libtool │ │ │ │ │ ├── ltmain.sh │ │ │ │ │ ├── missing │ │ │ │ │ └── mumps.patch │ │ │ ├── appveyor.yml │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── depcomp │ │ │ ├── doxydoc │ │ │ │ └── doxygen.conf.in │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ └── missing │ │ ├── install.sh │ │ ├── pyipopt.tar │ │ ├── pyipopt │ │ │ ├── .gitignore │ │ │ ├── Changelog │ │ │ ├── README.md │ │ │ ├── build │ │ │ │ ├── lib.linux-x86_64-2.7 │ │ │ │ │ └── pyipopt │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── ipoptconst.py │ │ │ │ │ │ ├── ipoptunconstrained.py │ │ │ │ │ │ └── pyipoptcore.so │ │ │ │ └── temp.linux-x86_64-2.7 │ │ │ │ │ └── src │ │ │ │ │ ├── callback.o │ │ │ │ │ └── pyipoptcoremodule.o │ │ │ ├── examples │ │ │ │ ├── hs071.py │ │ │ │ ├── hs071_PY3.py │ │ │ │ ├── out.txt │ │ │ │ ├── rosen.py │ │ │ │ └── unconstrained │ │ │ │ │ ├── himmelblau.py │ │ │ │ │ ├── rosen.py │ │ │ │ │ └── wood.py │ │ │ ├── pyipoptpackage │ │ │ │ ├── __init__.py │ │ │ │ ├── ipoptconst.py │ │ │ │ └── ipoptunconstrained.py │ │ │ ├── setup.py │ │ │ └── src │ │ │ │ ├── callback.c │ │ │ │ ├── hook.h │ │ │ │ └── pyipoptcoremodule.c │ │ └── setup_env.sh │ ├── spinterp_v5.1.1.zip │ └── submit_interactive_jobs_grace.sh ├── adaptive_grid_slow.gif ├── lit │ ├── ANU 2004 Bungartz.pdf │ ├── BrummScheideggerASG.pdf │ ├── HPC_SG.pdf │ └── p561-klimke.pdf └── surplus_slow.gif ├── Lecture_3 └── Lecture_3_SGDP.pdf ├── Lecture_4 ├── Lecture_4_ML.pdf └── code │ ├── 1d_GPR.py │ ├── 1d_gp_example.py │ ├── auto-mpg.data.txt │ └── poly_reg.py ├── Lecture_5 ├── Lecture_5_ML.pdf └── code │ ├── 1d_gp_example.py │ ├── BGMM_data │ ├── build_density.py │ ├── ergodic_data.txt │ └── sample.py │ ├── GMM_scikit_example.py │ ├── GPR_scikit_noise.py │ └── scikit_multi-d.py ├── Lecture_6 ├── Lecture_6_ML.pdf └── code │ ├── AS_ex1.py │ ├── AS_ex2.py │ ├── AS_ex3.py │ └── growth_model_GPR │ ├── cleanup.sh │ ├── econ.py │ ├── errors.txt │ ├── interpolation.py │ ├── interpolation_iter.py │ ├── ipopt_wrapper.py │ ├── main.py │ ├── nonlinear_solver_initial.py │ ├── nonlinear_solver_iterate.py │ ├── parameters.py │ ├── postprocessing.py │ └── restart │ └── dummy └── README.md /Lecture_1/Lecture_1_Python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_1/Lecture_1_Python.pdf -------------------------------------------------------------------------------- /Lecture_1/beginners_python_cheat_sheet_pcc_all.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_1/beginners_python_cheat_sheet_pcc_all.pdf -------------------------------------------------------------------------------- /Lecture_1/code/basic_examples/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_1/code/basic_examples/data.txt -------------------------------------------------------------------------------- /Lecture_1/code/basic_examples/example0_hello.py: -------------------------------------------------------------------------------- 1 | print('Hello, world') 2 | -------------------------------------------------------------------------------- /Lecture_1/code/basic_examples/example10_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_1/code/basic_examples/example10_read.py -------------------------------------------------------------------------------- /Lecture_1/code/basic_examples/example11_readsys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_1/code/basic_examples/example11_readsys.py -------------------------------------------------------------------------------- /Lecture_1/code/basic_examples/example12_readfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_1/code/basic_examples/example12_readfile.py -------------------------------------------------------------------------------- /Lecture_1/code/basic_examples/example12_writefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_1/code/basic_examples/example12_writefile.py -------------------------------------------------------------------------------- /Lecture_1/code/basic_examples/example13_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_1/code/basic_examples/example13_plot.py -------------------------------------------------------------------------------- /Lecture_1/code/basic_examples/example1_hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_1/code/basic_examples/example1_hello.py -------------------------------------------------------------------------------- /Lecture_1/code/basic_examples/example2_welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_1/code/basic_examples/example2_welcome.py -------------------------------------------------------------------------------- /Lecture_1/code/basic_examples/example3_while.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_1/code/basic_examples/example3_while.py -------------------------------------------------------------------------------- /Lecture_1/code/basic_examples/example4_sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_1/code/basic_examples/example4_sum.py -------------------------------------------------------------------------------- /Lecture_1/code/basic_examples/example5_forloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_1/code/basic_examples/example5_forloop.py -------------------------------------------------------------------------------- /Lecture_1/code/basic_examples/example6_forloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_1/code/basic_examples/example6_forloop.py -------------------------------------------------------------------------------- /Lecture_1/code/basic_examples/example7_greet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_1/code/basic_examples/example7_greet.py -------------------------------------------------------------------------------- /Lecture_1/code/basic_examples/example8_sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_1/code/basic_examples/example8_sum.py -------------------------------------------------------------------------------- /Lecture_1/code/basic_examples/example9_branching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_1/code/basic_examples/example9_branching.py -------------------------------------------------------------------------------- /Lecture_1/code/basic_examples/matrix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_1/code/basic_examples/matrix.txt -------------------------------------------------------------------------------- /Lecture_1/code/basic_examples/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_1/code/basic_examples/test.png -------------------------------------------------------------------------------- /Lecture_1/code/basic_examples/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_1/code/basic_examples/test.py -------------------------------------------------------------------------------- /Lecture_1/code/basic_examples/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_1/code/basic_examples/text.txt -------------------------------------------------------------------------------- /Lecture_1/code/opt_nonlinear/example1_opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_1/code/opt_nonlinear/example1_opt.py -------------------------------------------------------------------------------- /Lecture_1/code/opt_nonlinear/example2_nonlinear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_1/code/opt_nonlinear/example2_nonlinear.py -------------------------------------------------------------------------------- /Lecture_2/Lecture_2_SparseGrid.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/Lecture_2_SparseGrid.pdf -------------------------------------------------------------------------------- /Lecture_2/Lecture_2_supplement_YaleHPC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/Lecture_2_supplement_YaleHPC.pdf -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/Econ_example_ramsey/FOCs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/Econ_example_ramsey/FOCs.m -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/Econ_example_ramsey/TimeIterationWithSparseGrids.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/Econ_example_ramsey/TimeIterationWithSparseGrids.m -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/TasmanianSparseGrids.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/TasmanianSparseGrids.zip -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/analytical_examples/TASMANIAN_Matlab/tsg_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/analytical_examples/TASMANIAN_Matlab/tsg_example.m -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/analytical_examples/TASMANIAN_Python/TasmanianSG.in.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/analytical_examples/TASMANIAN_Python/TasmanianSG.in.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/analytical_examples/TASMANIAN_Python/TasmanianSG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/analytical_examples/TASMANIAN_Python/TasmanianSG.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/analytical_examples/TASMANIAN_Python/TasmanianSG.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/analytical_examples/TASMANIAN_Python/TasmanianSG.pyc -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/analytical_examples/TASMANIAN_Python/tsg_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/analytical_examples/TASMANIAN_Python/tsg_example.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/mpi_growth/TasmanianSG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/mpi_growth/TasmanianSG.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/mpi_growth/TasmanianSG.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/mpi_growth/TasmanianSG.pyc -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/mpi_growth/cleanup.sh: -------------------------------------------------------------------------------- 1 | rm *.pyc *.txt 2 | -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/mpi_growth/econ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/mpi_growth/econ.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/mpi_growth/econ.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/mpi_growth/econ.pyc -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/mpi_growth/interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/mpi_growth/interpolation.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/mpi_growth/interpolation.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/mpi_growth/interpolation.pyc -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/mpi_growth/interpolation_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/mpi_growth/interpolation_iter.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/mpi_growth/interpolation_iter.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/mpi_growth/interpolation_iter.pyc -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/mpi_growth/ipopt_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/mpi_growth/ipopt_wrapper.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/mpi_growth/ipopt_wrapper.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/mpi_growth/ipopt_wrapper.pyc -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/mpi_growth/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/mpi_growth/main.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/mpi_growth/nonlinear_solver_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/mpi_growth/nonlinear_solver_initial.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/mpi_growth/nonlinear_solver_initial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/mpi_growth/nonlinear_solver_initial.pyc -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/mpi_growth/nonlinear_solver_iterate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/mpi_growth/nonlinear_solver_iterate.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/mpi_growth/nonlinear_solver_iterate.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/mpi_growth/nonlinear_solver_iterate.pyc -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/mpi_growth/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/mpi_growth/parameters.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/mpi_growth/parameters.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/mpi_growth/parameters.pyc -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/mpi_growth/postprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/mpi_growth/postprocessing.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/mpi_growth/postprocessing.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/mpi_growth/postprocessing.pyc -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/mpi_growth/submit_MPI_yale.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/mpi_growth/submit_MPI_yale.sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/mpi_growth/test_initial_sg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/mpi_growth/test_initial_sg.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/serial/TasmanianSG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/serial/TasmanianSG.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/serial/cleanup.sh: -------------------------------------------------------------------------------- 1 | rm *.pyc *.txt 2 | -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/serial/econ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/serial/econ.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/serial/interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/serial/interpolation.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/serial/interpolation_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/serial/interpolation_iter.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/serial/ipopt_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/serial/ipopt_wrapper.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/serial/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/serial/main.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/serial/nonlinear_solver_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/serial/nonlinear_solver_initial.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/serial/nonlinear_solver_iterate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/serial/nonlinear_solver_iterate.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/serial/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/serial/parameters.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/serial/postprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/serial/postprocessing.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/serial/submit_MPI_yale.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/serial/submit_MPI_yale.sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/serial/test_initial_sg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/serial/test_initial_sg.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/serial_stochastic/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/serial_stochastic/.DS_Store -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/serial_stochastic/TasmanianSG.in.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/serial_stochastic/TasmanianSG.in.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/serial_stochastic/TasmanianSG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/serial_stochastic/TasmanianSG.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/serial_stochastic/cleanup.sh: -------------------------------------------------------------------------------- 1 | rm *.pyc *.txt 2 | -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/serial_stochastic/econ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/serial_stochastic/econ.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/serial_stochastic/interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/serial_stochastic/interpolation.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/serial_stochastic/interpolation_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/serial_stochastic/interpolation_iter.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/serial_stochastic/ipopt_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/serial_stochastic/ipopt_wrapper.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/serial_stochastic/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/serial_stochastic/main.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/serial_stochastic/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/serial_stochastic/parameters.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/serial_stochastic/postprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/serial_stochastic/postprocessing.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/serial_stochastic/submit_MPI_yale.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/serial_stochastic/submit_MPI_yale.sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/growth_model/serial_stochastic/test_initial_sg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/growth_model/serial_stochastic/test_initial_sg.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/install_SG.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/install_SG.sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/.travis.yml -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/Makemain.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/Makemain.inc -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/coin-functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/coin-functions -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/coin.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/coin.m4 -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/commit_new_release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/commit_new_release -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/commit_new_stable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/commit_new_stable -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/compile_f2c/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/compile_f2c/INSTALL -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/compile_f2c/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/compile_f2c/README -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/compile_f2c/compile_f2c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/compile_f2c/compile_f2c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/config.guess -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/config.sub -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/depcomp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/get.dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/get.dependencies.sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/install-sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/ltmain.sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/missing -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/prepare_new_release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/prepare_new_release -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/prepare_new_stable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/prepare_new_stable -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/run_autotools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/run_autotools -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/set_externals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/set_externals -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/share/config.site: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/BuildTools/share/config.site -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ChangeLog -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Dependencies -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/INSTALL -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/AUTHORS -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/INSTALL -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/LICENSE -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/Makefile.am -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/Makefile.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/README -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/config.guess -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/config.sub -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/configure -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/configure.ac -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/contrib/JavaInterface/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/contrib/JavaInterface/README -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/contrib/JavaInterface/manifest.txt: -------------------------------------------------------------------------------- 1 | Main-Class: org/coinor/examples/scalable/SolveProblem 2 | -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/contrib/MatlabInterface/examples/startup.m.in: -------------------------------------------------------------------------------- 1 | addpath @prefix@/lib 2 | -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/contrib/RInterface/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/contrib/RInterface/CHANGELOG -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/contrib/RInterface/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/contrib/RInterface/NAMESPACE -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/contrib/RInterface/R/ipoptr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/contrib/RInterface/R/ipoptr.R -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/contrib/RInterface/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/contrib/RInterface/README -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/contrib/sIPOPT/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/contrib/sIPOPT/Makefile.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/contrib/sIPOPT/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/contrib/sIPOPT/doc/Makefile -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/contrib/sIPOPT/doc/iecrv5.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/contrib/sIPOPT/doc/iecrv5.bst -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/contrib/sIPOPT/doc/sipopt.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/contrib/sIPOPT/doc/sipopt.bib -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/contrib/sIPOPT/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/contrib/sIPOPT/install.txt -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/contrib/sIPOPT/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/contrib/sIPOPT/readme.txt -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/contrib/sIPOPT/toDo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/contrib/sIPOPT/toDo.txt -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/depcomp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/doc/documentation.bbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/doc/documentation.bbl -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/doc/documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/doc/documentation.pdf -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/doc/documentation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/doc/documentation.tex -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/doc/hs071_warmstart.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/doc/hs071_warmstart.mod -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/doc/makehtml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/doc/makehtml.sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/doc/options.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/doc/options.tex -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/doc/options_ampl.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/doc/options_ampl.tex -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/doxydoc/doxygen.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/doxydoc/doxygen.conf.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/examples/hs071_c/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/examples/hs071_c/Makefile.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/examples/hs071_c/hs071_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/examples/hs071_c/hs071_c.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/examples/hs071_f/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/examples/hs071_f/Makefile.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/examples/hs071_f/hs071_f.f.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/examples/hs071_f/hs071_f.f.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/install-sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/ipopt-uninstalled.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/ipopt-uninstalled.pc.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/ipopt.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/ipopt.pc.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/ltmain.sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/missing -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Algorithm/IpConvCheck.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Algorithm/IpConvCheck.hpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Algorithm/IpFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Algorithm/IpFilter.cpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Algorithm/IpFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Algorithm/IpFilter.hpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Algorithm/IpIpoptAlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Algorithm/IpIpoptAlg.cpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Algorithm/IpIpoptAlg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Algorithm/IpIpoptAlg.hpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Algorithm/IpIpoptData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Algorithm/IpIpoptData.cpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Algorithm/IpIpoptData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Algorithm/IpIpoptData.hpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Algorithm/IpIpoptNLP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Algorithm/IpIpoptNLP.hpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Algorithm/IpMuOracle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Algorithm/IpMuOracle.hpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Algorithm/IpMuUpdate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Algorithm/IpMuUpdate.hpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Algorithm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Algorithm/Makefile.am -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Algorithm/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Algorithm/Makefile.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Apps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Apps/Makefile.am -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Apps/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Apps/Makefile.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpDebug.cpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpDebug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpDebug.hpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpException.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpException.hpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpJournalist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpJournalist.cpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpJournalist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpJournalist.hpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpObserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpObserver.cpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpObserver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpObserver.hpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpOptionsList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpOptionsList.cpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpOptionsList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpOptionsList.hpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpReferenced.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpReferenced.hpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpRegOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpRegOptions.cpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpRegOptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpRegOptions.hpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpSmartPtr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpSmartPtr.hpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpTaggedObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpTaggedObject.cpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpTaggedObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpTaggedObject.hpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpTimedTask.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpTimedTask.hpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpTypes.hpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpUtils.cpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpUtils.hpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpoptConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/IpoptConfig.h -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/Makefile.am -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/Makefile.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/config.h.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/config_default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/config_default.h -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/config_ipopt.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Common/config_ipopt.h.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Interfaces/IpNLP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Interfaces/IpNLP.hpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Interfaces/IpTNLP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Interfaces/IpTNLP.hpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Interfaces/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Interfaces/Makefile.am -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Interfaces/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/Interfaces/Makefile.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/LinAlg/IpBlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/LinAlg/IpBlas.cpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/LinAlg/IpBlas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/LinAlg/IpBlas.hpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/LinAlg/IpLapack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/LinAlg/IpLapack.cpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/LinAlg/IpLapack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/LinAlg/IpLapack.hpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/LinAlg/IpMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/LinAlg/IpMatrix.cpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/LinAlg/IpMatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/LinAlg/IpMatrix.hpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/LinAlg/IpSumMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/LinAlg/IpSumMatrix.cpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/LinAlg/IpSumMatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/LinAlg/IpSumMatrix.hpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/LinAlg/IpSymMatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/LinAlg/IpSymMatrix.hpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/LinAlg/IpVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/LinAlg/IpVector.cpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/LinAlg/IpVector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/LinAlg/IpVector.hpp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/LinAlg/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/LinAlg/Makefile.am -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/LinAlg/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/src/LinAlg/Makefile.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/test/Makefile.am -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/test/Makefile.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/test/mytoy.nl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/test/mytoy.nl -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/test/run_unitTests.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/test/run_unitTests.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/tutorial/CodingExercise/Matlab/1-skeleton/startup.m.in: -------------------------------------------------------------------------------- 1 | addpath @prefix@/lib 2 | -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/tutorial/CodingExercise/Matlab/2-mistake/startup.m.in: -------------------------------------------------------------------------------- 1 | addpath @prefix@/lib 2 | -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/tutorial/CodingExercise/Matlab/3-solution/startup.m.in: -------------------------------------------------------------------------------- 1 | addpath @prefix@/lib 2 | -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/tutorial/Modeling/bad1.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Ipopt/tutorial/Modeling/bad1.mod -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/LICENSE -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Makefile.am -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/Makefile.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/README -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/INSTALL.ASL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/INSTALL.ASL -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/Makefile.am -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/Makefile.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/coinasl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/coinasl.pc.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/compile_MS_ASL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/compile_MS_ASL.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/config.guess -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/config.sub -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/configure -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/configure.ac -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/depcomp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/get.ASL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/get.ASL -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/install-sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/ltmain.sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/mingw.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/mingw.patch -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/missing -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/.cache -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/.cache+: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/.cache+ -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/.depend -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/MD5 -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/README -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/arith.h0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/arith.h0 -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/arith.ibm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/arith.ibm -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/asl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/asl.h -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/asl_pfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/asl_pfg.h -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/asldate.c: -------------------------------------------------------------------------------- 1 | long ASLdate_ASL = 20130622; 2 | -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/atof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/atof.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/auxinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/auxinfo.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/avltree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/avltree.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/avltree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/avltree.h -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/bpmpd/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/bpmpd/MD5 -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/bscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/bscanf.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/changes -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/comeval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/comeval.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/con2val.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/con2val.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/conadj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/conadj.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/configure -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/conpval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/conpval.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/conval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/conval.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/cplex/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/cplex/MD5 -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/cplex/version60.c: -------------------------------------------------------------------------------- 1 | char cplex_version[] = "\nAMPL/CPLEX(19990421)\n"; 2 | -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/cplex/version66.c: -------------------------------------------------------------------------------- 1 | char cplex_version[] = "\nAMPL/CPLEX(20000909)\n"; 2 | -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/derprop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/derprop.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/dtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/dtoa.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/dtoa1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/dtoa1.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/duthes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/duthes.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/dvalue.hd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/dvalue.hd -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/dynlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/dynlink.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/errchk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/errchk.h -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/examples/v8.c: -------------------------------------------------------------------------------- 1 | #define PSEDREAD 2 | #include "ve08.c" 3 | -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/f_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/f_read.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/fg_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/fg_read.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/float.h0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/float.h0 -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/fpinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/fpinit.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/fsqp/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/fsqp/MD5 -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/fsqp/version.c: -------------------------------------------------------------------------------- 1 | char fsqp_version[] = "CFSQP 2.5c (19980403)"; 2 | -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/fullhes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/fullhes.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/funcadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/funcadd.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/funcadd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/funcadd.h -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/funclink/00lastchange: -------------------------------------------------------------------------------- 1 | Tue May 26 23:20:15 MDT 2009 2 | README: update URLs. 3 | -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/funclink/funcout.exp: -------------------------------------------------------------------------------- 1 | funcadd_ASL 2 | -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/funclink/silly.2: -------------------------------------------------------------------------------- 1 | mean treating arg 1 = "a" as 0 2 | -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/g_fmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/g_fmt.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/getenv.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/getstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/getstub.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/getstub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/getstub.h -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/htcl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/htcl.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/index -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/jac0dim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/jac0dim.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/jac2dim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/jac2dim.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/jac2dim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/jac2dim.h -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/jacdim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/jacdim.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/jacinc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/jacinc.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/jacinc1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/jacinc1.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/jacpdim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/jacpdim.h -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/lancelot/00lastchange: -------------------------------------------------------------------------------- 1 | Wed Jan 2 16:29:43 EST 2002 2 | 3 | Update the URL in README. 4 | -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/lancelot/xsum0.out: -------------------------------------------------------------------------------- 1 | README 516f056 3766 2 | lancelot.c 16747354 29617 3 | makefile.u 3502e4e 2085 4 | -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/loqo/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/loqo/MD5 -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/mach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/mach.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/minos/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/minos/MD5 -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/mip_pri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/mip_pri.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/misc.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/mypow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/mypow.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/names.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/names.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/nl_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/nl_obj.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/nlc/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/nlc/MD5 -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/nlc/ch3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/nlc/ch3.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/nlc/ch3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/nlc/ch3.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/nlc/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/nlc/index -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/nlc/nlc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/nlc/nlc.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/nlc/nlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/nlc/nlc.h -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/nlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/nlp.h -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/nlp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/nlp2.h -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/npopt/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/npopt/MD5 -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/npopt/version.c: -------------------------------------------------------------------------------- 1 | char npopt_version[] = "NPOPT (19980403)"; 2 | -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/npsol/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/npsol/MD5 -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/npsol/version.c: -------------------------------------------------------------------------------- 1 | char npsol_version[] = "NPSOL (19980403)"; 2 | -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/obj2val.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/obj2val.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/obj_adj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/obj_adj.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/obj_adj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/obj_adj.h -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/objval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/objval.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/objval_.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/objval_.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/op_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/op_type.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/opcode.hd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/opcode.hd -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/opnos.hd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/opnos.hd -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/osl/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/osl/MD5 -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/osl/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/osl/index -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/osl/osl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/osl/osl.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/osl/osl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/osl/osl.h -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/osl/osl1.2/version.c: -------------------------------------------------------------------------------- 1 | char osl_vers[] = "\nAMPL/OSL Version 19970501\n"; 2 | -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/osl/version.c0: -------------------------------------------------------------------------------- 1 | char osl_vers[] = "\nAMPL/OSL Version 20020429 (Machine_details)\n"; 2 | -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/path/00lastchange: -------------------------------------------------------------------------------- 1 | 20050625 2 | Pass (new flags bit) ASL_no_linear_cc_rhs_adjust to fg_read. 3 | -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/path/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/path/MD5 -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/printf.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/psinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/psinfo.h -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/qp_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/qp_read.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/qpcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/qpcheck.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/qsortv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/qsortv.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/r_op.hd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/r_op.hd -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/r_opn.hd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/r_opn.hd -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/r_opn0.hd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/r_opn0.hd -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/r_qp.hd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/r_qp.hd -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/readsol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/readsol.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/rops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/rops.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/rops2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/rops2.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/snopt/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/snopt/MD5 -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/sos_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/sos_add.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/sphes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/sphes.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/sprintf.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/sscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/sscanf.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/stderr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/stderr.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/stdio1.h0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/stdio1.h0 -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/suf_sos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/suf_sos.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/value.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/wrtsol_.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/wrtsol_.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/ws_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/ws_desc.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/x2check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/x2check.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/xectim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/xectim.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/xpress/.list: -------------------------------------------------------------------------------- 1 | herve.werner@rte-france.com 2 | -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/xsum0.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/xsum0.out -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/INSTALL.BLAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/INSTALL.BLAS -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/Makefile.am -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/Makefile.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/caxpy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/caxpy.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ccopy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ccopy.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/cdotc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/cdotc.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/cdotu.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/cdotu.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/cgbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/cgbmv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/cgemm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/cgemm.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/cgemv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/cgemv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/cgerc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/cgerc.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/cgeru.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/cgeru.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/chbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/chbmv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/chemm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/chemm.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/chemv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/chemv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/cher.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/cher.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/cher2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/cher2.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/cher2k.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/cher2k.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/cherk.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/cherk.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/chpmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/chpmv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/chpr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/chpr.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/chpr2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/chpr2.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/coinblas.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/coinblas.pc.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/config.guess -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/config.sub -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/configure -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/configure.ac -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/crotg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/crotg.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/cscal.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/cscal.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/csrot.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/csrot.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/csscal.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/csscal.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/cswap.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/cswap.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/csymm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/csymm.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/csyr2k.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/csyr2k.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/csyrk.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/csyrk.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ctbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ctbmv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ctbsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ctbsv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ctpmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ctpmv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ctpsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ctpsv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ctrmm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ctrmm.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ctrmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ctrmv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ctrsm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ctrsm.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ctrsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ctrsv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dasum.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dasum.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/daxpy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/daxpy.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dcabs1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dcabs1.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dcopy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dcopy.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ddot.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ddot.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/depcomp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dgbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dgbmv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dgemm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dgemm.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dgemv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dgemv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dger.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dger.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dnrm2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dnrm2.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/drot.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/drot.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/drotg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/drotg.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/drotm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/drotm.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/drotmg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/drotmg.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dsbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dsbmv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dscal.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dscal.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dsdot.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dsdot.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dspmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dspmv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dspr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dspr.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dspr2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dspr2.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dswap.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dswap.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dsymm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dsymm.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dsymv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dsymv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dsyr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dsyr.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dsyr2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dsyr2.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dsyr2k.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dsyr2k.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dsyrk.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dsyrk.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dtbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dtbmv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dtbsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dtbsv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dtpmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dtpmv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dtpsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dtpsv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dtrmm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dtrmm.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dtrmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dtrmv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dtrsm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dtrsm.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dtrsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dtrsv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dzasum.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dzasum.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dznrm2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/dznrm2.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/get.Blas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/get.Blas -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/icamax.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/icamax.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/idamax.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/idamax.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/install-sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/isamax.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/isamax.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/izamax.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/izamax.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/lsame.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/lsame.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ltmain.sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/missing -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/sasum.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/sasum.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/saxpy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/saxpy.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/scabs1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/scabs1.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/scasum.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/scasum.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/scnrm2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/scnrm2.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/scopy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/scopy.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/sdot.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/sdot.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/sdsdot.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/sdsdot.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/sgbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/sgbmv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/sgemm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/sgemm.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/sgemv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/sgemv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/sger.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/sger.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/snrm2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/snrm2.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/srot.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/srot.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/srotg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/srotg.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/srotm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/srotm.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/srotmg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/srotmg.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ssbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ssbmv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/sscal.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/sscal.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/sspmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/sspmv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/sspr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/sspr.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/sspr2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/sspr2.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/sswap.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/sswap.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ssymm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ssymm.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ssymv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ssymv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ssyr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ssyr.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ssyr2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ssyr2.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ssyr2k.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ssyr2k.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ssyrk.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ssyrk.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/stbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/stbmv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/stbsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/stbsv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/stpmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/stpmv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/stpsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/stpsv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/strmm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/strmm.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/strmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/strmv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/strsm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/strsm.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/strsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/strsv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/xerbla.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/xerbla.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zaxpy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zaxpy.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zcopy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zcopy.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zdotc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zdotc.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zdotu.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zdotu.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zdrot.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zdrot.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zdscal.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zdscal.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zgbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zgbmv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zgemm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zgemm.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zgemv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zgemv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zgerc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zgerc.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zgeru.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zgeru.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zhbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zhbmv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zhemm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zhemm.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zhemv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zhemv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zher.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zher.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zher2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zher2.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zher2k.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zher2k.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zherk.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zherk.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zhpmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zhpmv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zhpr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zhpr.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zhpr2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zhpr2.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zrotg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zrotg.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zscal.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zscal.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zswap.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zswap.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zsymm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zsymm.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zsyr2k.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zsyr2k.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zsyrk.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/zsyrk.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ztbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ztbmv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ztbsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ztbsv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ztpmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ztpmv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ztpsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ztpsv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ztrmm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ztrmm.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ztrmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ztrmv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ztrsm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ztrsm.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ztrsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Blas/ztrsv.f -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/CoinHslConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/CoinHslConfig.h -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/INSTALL.HSL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/INSTALL.HSL -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/Makefile.am -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/Makefile.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/coinhsl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/coinhsl.pc.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/coinhsl/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/coinhsl/ChangeLog -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/coinhsl/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/coinhsl/INSTALL -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/coinhsl/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/coinhsl/LICENCE -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/coinhsl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/coinhsl/README -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/coinhsl/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/coinhsl/configure -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/coinhsl/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/coinhsl/ltmain.sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/coinhsl/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/coinhsl/missing -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/config.guess -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/config.h.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/config.sub -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/configure -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/configure.ac -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/depcomp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/install-sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/ltmain.sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/metis_dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/metis_dummy.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSL/missing -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSLold/INSTALL.HSL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSLold/INSTALL.HSL -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSLold/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSLold/Makefile.am -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSLold/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSLold/Makefile.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSLold/coinhsl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSLold/coinhsl.pc.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSLold/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSLold/config.guess -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSLold/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSLold/config.h.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSLold/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSLold/config.sub -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSLold/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSLold/configure -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSLold/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSLold/configure.ac -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSLold/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSLold/depcomp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSLold/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSLold/install-sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSLold/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSLold/ltmain.sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSLold/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/HSLold/missing -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Lapack/INSTALL.LAPACK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Lapack/INSTALL.LAPACK -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Lapack/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Lapack/Makefile.am -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Lapack/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Lapack/Makefile.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Lapack/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Lapack/config.guess -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Lapack/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Lapack/config.sub -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Lapack/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Lapack/configure -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Lapack/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Lapack/configure.ac -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Lapack/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Lapack/depcomp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Lapack/get.Lapack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Lapack/get.Lapack -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Lapack/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Lapack/install-sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Lapack/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Lapack/ltmain.sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Lapack/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Lapack/missing -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/INSTALL.Metis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/INSTALL.Metis -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/Makefile.am -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/Makefile.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/coinmetis.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/coinmetis.pc.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/config.guess -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/config.sub -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/configure -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/configure.ac -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/depcomp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/get.Metis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/get.Metis -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/install-sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/ltmain.sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/metis-4.0/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/metis-4.0/FILES -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Metis/missing -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/.deps/mpic.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/.deps/mpic.Plo -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/INSTALL.MUMPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/INSTALL.MUMPS -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/Makefile -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/Makefile.am -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/Makefile.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/coinmumps.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/coinmumps.pc -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/coinmumps.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/coinmumps.pc.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/config.guess -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/config.log -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/config.status -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/config.sub -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/configure -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/configure.ac -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/depcomp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/get.Mumps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/get.Mumps -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/install-sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/libtool -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/ltmain.sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/missing -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/mumps.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/Mumps/mumps.patch -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/appveyor.yml -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/config.guess -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/config.sub -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/configure -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/configure.ac -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/depcomp -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/doxydoc/doxygen.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/doxydoc/doxygen.conf.in -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/install-sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ltmain.sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/missing -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/install.sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/pyipopt.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/pyipopt.tar -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/pyipopt/.gitignore: -------------------------------------------------------------------------------- 1 | .* 2 | *.html 3 | # EXCEPTIONS 4 | !README 5 | !.gitignore 6 | build 7 | pyipopt.so 8 | -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/pyipopt/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/pyipopt/Changelog -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/pyipopt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/pyipopt/README.md -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/pyipopt/examples/hs071.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/pyipopt/examples/hs071.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/pyipopt/examples/hs071_PY3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/pyipopt/examples/hs071_PY3.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/pyipopt/examples/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/pyipopt/examples/out.txt -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/pyipopt/examples/rosen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/pyipopt/examples/rosen.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/pyipopt/examples/unconstrained/himmelblau.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/pyipopt/examples/unconstrained/himmelblau.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/pyipopt/examples/unconstrained/rosen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/pyipopt/examples/unconstrained/rosen.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/pyipopt/examples/unconstrained/wood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/pyipopt/examples/unconstrained/wood.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/pyipopt/pyipoptpackage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/pyipopt/pyipoptpackage/__init__.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/pyipopt/pyipoptpackage/ipoptconst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/pyipopt/pyipoptpackage/ipoptconst.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/pyipopt/pyipoptpackage/ipoptunconstrained.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/pyipopt/pyipoptpackage/ipoptunconstrained.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/pyipopt/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/pyipopt/setup.py -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/pyipopt/src/callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/pyipopt/src/callback.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/pyipopt/src/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/pyipopt/src/hook.h -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/pyipopt/src/pyipoptcoremodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/pyipopt/src/pyipoptcoremodule.c -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/pyipopt/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/pyipopt/setup_env.sh -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/spinterp_v5.1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/SparseGridCode/spinterp_v5.1.1.zip -------------------------------------------------------------------------------- /Lecture_2/SparseGridCode/submit_interactive_jobs_grace.sh: -------------------------------------------------------------------------------- 1 | srun --pty --x11 -p interactive bash 2 | 3 | -------------------------------------------------------------------------------- /Lecture_2/adaptive_grid_slow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/adaptive_grid_slow.gif -------------------------------------------------------------------------------- /Lecture_2/lit/ANU 2004 Bungartz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/lit/ANU 2004 Bungartz.pdf -------------------------------------------------------------------------------- /Lecture_2/lit/BrummScheideggerASG.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/lit/BrummScheideggerASG.pdf -------------------------------------------------------------------------------- /Lecture_2/lit/HPC_SG.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/lit/HPC_SG.pdf -------------------------------------------------------------------------------- /Lecture_2/lit/p561-klimke.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/lit/p561-klimke.pdf -------------------------------------------------------------------------------- /Lecture_2/surplus_slow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_2/surplus_slow.gif -------------------------------------------------------------------------------- /Lecture_3/Lecture_3_SGDP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_3/Lecture_3_SGDP.pdf -------------------------------------------------------------------------------- /Lecture_4/Lecture_4_ML.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_4/Lecture_4_ML.pdf -------------------------------------------------------------------------------- /Lecture_4/code/1d_GPR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_4/code/1d_GPR.py -------------------------------------------------------------------------------- /Lecture_4/code/1d_gp_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_4/code/1d_gp_example.py -------------------------------------------------------------------------------- /Lecture_4/code/auto-mpg.data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_4/code/auto-mpg.data.txt -------------------------------------------------------------------------------- /Lecture_4/code/poly_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_4/code/poly_reg.py -------------------------------------------------------------------------------- /Lecture_5/Lecture_5_ML.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_5/Lecture_5_ML.pdf -------------------------------------------------------------------------------- /Lecture_5/code/1d_gp_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_5/code/1d_gp_example.py -------------------------------------------------------------------------------- /Lecture_5/code/BGMM_data/build_density.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_5/code/BGMM_data/build_density.py -------------------------------------------------------------------------------- /Lecture_5/code/BGMM_data/ergodic_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_5/code/BGMM_data/ergodic_data.txt -------------------------------------------------------------------------------- /Lecture_5/code/BGMM_data/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_5/code/BGMM_data/sample.py -------------------------------------------------------------------------------- /Lecture_5/code/GMM_scikit_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_5/code/GMM_scikit_example.py -------------------------------------------------------------------------------- /Lecture_5/code/GPR_scikit_noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_5/code/GPR_scikit_noise.py -------------------------------------------------------------------------------- /Lecture_5/code/scikit_multi-d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_5/code/scikit_multi-d.py -------------------------------------------------------------------------------- /Lecture_6/Lecture_6_ML.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_6/Lecture_6_ML.pdf -------------------------------------------------------------------------------- /Lecture_6/code/AS_ex1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_6/code/AS_ex1.py -------------------------------------------------------------------------------- /Lecture_6/code/AS_ex2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_6/code/AS_ex2.py -------------------------------------------------------------------------------- /Lecture_6/code/AS_ex3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_6/code/AS_ex3.py -------------------------------------------------------------------------------- /Lecture_6/code/growth_model_GPR/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_6/code/growth_model_GPR/cleanup.sh -------------------------------------------------------------------------------- /Lecture_6/code/growth_model_GPR/econ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_6/code/growth_model_GPR/econ.py -------------------------------------------------------------------------------- /Lecture_6/code/growth_model_GPR/errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_6/code/growth_model_GPR/errors.txt -------------------------------------------------------------------------------- /Lecture_6/code/growth_model_GPR/interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_6/code/growth_model_GPR/interpolation.py -------------------------------------------------------------------------------- /Lecture_6/code/growth_model_GPR/interpolation_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_6/code/growth_model_GPR/interpolation_iter.py -------------------------------------------------------------------------------- /Lecture_6/code/growth_model_GPR/ipopt_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_6/code/growth_model_GPR/ipopt_wrapper.py -------------------------------------------------------------------------------- /Lecture_6/code/growth_model_GPR/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_6/code/growth_model_GPR/main.py -------------------------------------------------------------------------------- /Lecture_6/code/growth_model_GPR/nonlinear_solver_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_6/code/growth_model_GPR/nonlinear_solver_initial.py -------------------------------------------------------------------------------- /Lecture_6/code/growth_model_GPR/nonlinear_solver_iterate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_6/code/growth_model_GPR/nonlinear_solver_iterate.py -------------------------------------------------------------------------------- /Lecture_6/code/growth_model_GPR/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_6/code/growth_model_GPR/parameters.py -------------------------------------------------------------------------------- /Lecture_6/code/growth_model_GPR/postprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/Lecture_6/code/growth_model_GPR/postprocessing.py -------------------------------------------------------------------------------- /Lecture_6/code/growth_model_GPR/restart/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sischei/global_solution_yale19/HEAD/README.md --------------------------------------------------------------------------------