├── .gitattributes ├── .gitignore ├── 3rdparty ├── cereal-1.1.1 │ ├── LICENSE │ ├── README.md │ └── include │ │ └── cereal │ │ ├── access.hpp │ │ ├── archives │ │ ├── adapters.hpp │ │ ├── binary.hpp │ │ ├── json.hpp │ │ ├── portable_binary.hpp │ │ └── xml.hpp │ │ ├── cereal.hpp │ │ ├── details │ │ ├── helpers.hpp │ │ ├── polymorphic_impl.hpp │ │ ├── static_object.hpp │ │ ├── traits.hpp │ │ └── util.hpp │ │ ├── external │ │ ├── base64.hpp │ │ ├── rapidjson │ │ │ ├── document.h │ │ │ ├── filestream.h │ │ │ ├── genericstream.h │ │ │ ├── internal │ │ │ │ ├── pow10.h │ │ │ │ ├── stack.h │ │ │ │ └── strfunc.h │ │ │ ├── license.txt │ │ │ ├── prettywriter.h │ │ │ ├── rapidjson.h │ │ │ ├── reader.h │ │ │ ├── stringbuffer.h │ │ │ └── writer.h │ │ └── rapidxml │ │ │ ├── license.txt │ │ │ ├── manual.html │ │ │ ├── rapidxml.hpp │ │ │ ├── rapidxml_iterators.hpp │ │ │ ├── rapidxml_print.hpp │ │ │ └── rapidxml_utils.hpp │ │ ├── macros.hpp │ │ └── types │ │ ├── array.hpp │ │ ├── base_class.hpp │ │ ├── bitset.hpp │ │ ├── boost_variant.hpp │ │ ├── chrono.hpp │ │ ├── common.hpp │ │ ├── complex.hpp │ │ ├── deque.hpp │ │ ├── forward_list.hpp │ │ ├── list.hpp │ │ ├── map.hpp │ │ ├── memory.hpp │ │ ├── polymorphic.hpp │ │ ├── queue.hpp │ │ ├── set.hpp │ │ ├── stack.hpp │ │ ├── string.hpp │ │ ├── tuple.hpp │ │ ├── unordered_map.hpp │ │ ├── unordered_set.hpp │ │ ├── utility.hpp │ │ └── vector.hpp └── gtest-1.7.0 │ ├── CHANGES │ ├── CMakeLists.txt │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── aclocal.m4 │ ├── build-aux │ ├── config.guess │ ├── config.h.in │ ├── config.sub │ ├── depcomp │ ├── install-sh │ ├── ltmain.sh │ └── missing │ ├── cmake │ └── internal_utils.cmake │ ├── codegear │ ├── gtest.cbproj │ ├── gtest.groupproj │ ├── gtest_all.cc │ ├── gtest_link.cc │ ├── gtest_main.cbproj │ └── gtest_unittest.cbproj │ ├── configure │ ├── configure.ac │ ├── fused-src │ └── gtest │ │ ├── gtest-all.cc │ │ ├── gtest.h │ │ └── gtest_main.cc │ ├── include │ └── gtest │ │ ├── gtest-death-test.h │ │ ├── gtest-message.h │ │ ├── gtest-param-test.h │ │ ├── gtest-param-test.h.pump │ │ ├── gtest-printers.h │ │ ├── gtest-spi.h │ │ ├── gtest-test-part.h │ │ ├── gtest-typed-test.h │ │ ├── gtest.h │ │ ├── gtest_pred_impl.h │ │ ├── gtest_prod.h │ │ └── internal │ │ ├── gtest-death-test-internal.h │ │ ├── gtest-filepath.h │ │ ├── gtest-internal.h │ │ ├── gtest-linked_ptr.h │ │ ├── gtest-param-util-generated.h │ │ ├── gtest-param-util-generated.h.pump │ │ ├── gtest-param-util.h │ │ ├── gtest-port.h │ │ ├── gtest-string.h │ │ ├── gtest-tuple.h │ │ ├── gtest-tuple.h.pump │ │ ├── gtest-type-util.h │ │ └── gtest-type-util.h.pump │ ├── m4 │ ├── acx_pthread.m4 │ ├── gtest.m4 │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ └── lt~obsolete.m4 │ ├── make │ └── Makefile │ ├── msvc │ ├── gtest-md.sln │ ├── gtest-md.vcproj │ ├── gtest.sln │ ├── gtest.vcproj │ ├── gtest_main-md.vcproj │ ├── gtest_main.vcproj │ ├── gtest_prod_test-md.vcproj │ ├── gtest_prod_test.vcproj │ ├── gtest_unittest-md.vcproj │ └── gtest_unittest.vcproj │ ├── samples │ ├── prime_tables.h │ ├── sample1.cc │ ├── sample1.h │ ├── sample10_unittest.cc │ ├── sample1_unittest.cc │ ├── sample2.cc │ ├── sample2.h │ ├── sample2_unittest.cc │ ├── sample3-inl.h │ ├── sample3_unittest.cc │ ├── sample4.cc │ ├── sample4.h │ ├── sample4_unittest.cc │ ├── sample5_unittest.cc │ ├── sample6_unittest.cc │ ├── sample7_unittest.cc │ ├── sample8_unittest.cc │ └── sample9_unittest.cc │ ├── scripts │ ├── fuse_gtest_files.py │ ├── gen_gtest_pred_impl.py │ ├── gtest-config.in │ ├── pump.py │ └── test │ │ └── Makefile │ ├── src │ ├── gtest-all.cc │ ├── gtest-death-test.cc │ ├── gtest-filepath.cc │ ├── gtest-internal-inl.h │ ├── gtest-port.cc │ ├── gtest-printers.cc │ ├── gtest-test-part.cc │ ├── gtest-typed-test.cc │ ├── gtest.cc │ └── gtest_main.cc │ ├── test │ ├── gtest-death-test_ex_test.cc │ ├── gtest-death-test_test.cc │ ├── gtest-filepath_test.cc │ ├── gtest-linked_ptr_test.cc │ ├── gtest-listener_test.cc │ ├── gtest-message_test.cc │ ├── gtest-options_test.cc │ ├── gtest-param-test2_test.cc │ ├── gtest-param-test_test.cc │ ├── gtest-param-test_test.h │ ├── gtest-port_test.cc │ ├── gtest-printers_test.cc │ ├── gtest-test-part_test.cc │ ├── gtest-tuple_test.cc │ ├── gtest-typed-test2_test.cc │ ├── gtest-typed-test_test.cc │ ├── gtest-typed-test_test.h │ ├── gtest-unittest-api_test.cc │ ├── gtest_all_test.cc │ ├── gtest_break_on_failure_unittest.py │ ├── gtest_break_on_failure_unittest_.cc │ ├── gtest_catch_exceptions_test.py │ ├── gtest_catch_exceptions_test_.cc │ ├── gtest_color_test.py │ ├── gtest_color_test_.cc │ ├── gtest_env_var_test.py │ ├── gtest_env_var_test_.cc │ ├── gtest_environment_test.cc │ ├── gtest_filter_unittest.py │ ├── gtest_filter_unittest_.cc │ ├── gtest_help_test.py │ ├── gtest_help_test_.cc │ ├── gtest_list_tests_unittest.py │ ├── gtest_list_tests_unittest_.cc │ ├── gtest_main_unittest.cc │ ├── gtest_no_test_unittest.cc │ ├── gtest_output_test.py │ ├── gtest_output_test_.cc │ ├── gtest_output_test_golden_lin.txt │ ├── gtest_pred_impl_unittest.cc │ ├── gtest_premature_exit_test.cc │ ├── gtest_prod_test.cc │ ├── gtest_repeat_test.cc │ ├── gtest_shuffle_test.py │ ├── gtest_shuffle_test_.cc │ ├── gtest_sole_header_test.cc │ ├── gtest_stress_test.cc │ ├── gtest_test_utils.py │ ├── gtest_throw_on_failure_ex_test.cc │ ├── gtest_throw_on_failure_test.py │ ├── gtest_throw_on_failure_test_.cc │ ├── gtest_uninitialized_test.py │ ├── gtest_uninitialized_test_.cc │ ├── gtest_unittest.cc │ ├── gtest_xml_outfile1_test_.cc │ ├── gtest_xml_outfile2_test_.cc │ ├── gtest_xml_outfiles_test.py │ ├── gtest_xml_output_unittest.py │ ├── gtest_xml_output_unittest_.cc │ ├── gtest_xml_test_utils.py │ ├── production.cc │ └── production.h │ └── xcode │ ├── Config │ ├── DebugProject.xcconfig │ ├── FrameworkTarget.xcconfig │ ├── General.xcconfig │ ├── ReleaseProject.xcconfig │ ├── StaticLibraryTarget.xcconfig │ └── TestTarget.xcconfig │ ├── Resources │ └── Info.plist │ ├── Samples │ └── FrameworkSample │ │ ├── Info.plist │ │ ├── WidgetFramework.xcodeproj │ │ └── project.pbxproj │ │ ├── runtests.sh │ │ ├── widget.cc │ │ ├── widget.h │ │ └── widget_test.cc │ ├── Scripts │ ├── runtests.sh │ └── versiongenerate.py │ └── gtest.xcodeproj │ └── project.pbxproj ├── CMakeLists.txt ├── LICENSE ├── README.md ├── apps └── rcr │ ├── CMakeLists.txt │ ├── data │ ├── face_landmarks_model_rcr_22.bin │ ├── face_landmarks_model_rcr_cofw_29.bin │ ├── mean_ibug_lfpw_68.txt │ ├── rcr_eval.cfg │ └── rcr_training_22.cfg │ ├── rcr-detect.cpp │ ├── rcr-track.cpp │ └── rcr-train.cpp ├── cmake └── FindEigen3.cmake ├── doc ├── CMakeLists.txt └── Doxyfile.in ├── examples ├── CMakeLists.txt ├── data │ ├── ibug_lfpw_trainset │ │ ├── image_0001.png │ │ ├── image_0001.pts │ │ ├── image_0002.png │ │ ├── image_0002.pts │ │ ├── image_0003.png │ │ ├── image_0003.pts │ │ ├── image_0004.png │ │ ├── image_0004.pts │ │ ├── image_0005.png │ │ ├── image_0005.pts │ │ └── notes.txt │ └── mean_ibug_lfpw_68.txt ├── hog.c ├── hog.h ├── landmark_detection.cpp ├── pose_estimation.cpp └── simple_function.cpp ├── include ├── rcr │ ├── adaptive_vlhog.hpp │ ├── helpers.hpp │ ├── hog.c │ ├── hog.h │ ├── landmark.hpp │ ├── landmarks_io.hpp │ └── model.hpp └── superviseddescent │ ├── regressors.hpp │ ├── superviseddescent.hpp │ ├── utils │ ├── ThreadPool.h │ ├── mat_cerealisation.hpp │ └── mat_serialization.hpp │ └── verbose_solver.hpp ├── initial_cache.cmake.template └── tests ├── CMakeLists.txt ├── test_LinearRegressor1D.cpp ├── test_LinearRegressorND.cpp └── test_SupervisedDescentOptimiser.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/.gitignore -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/LICENSE -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/README.md -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/access.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/archives/adapters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/archives/adapters.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/archives/binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/archives/binary.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/archives/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/archives/json.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/archives/portable_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/archives/portable_binary.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/archives/xml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/archives/xml.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/cereal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/cereal.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/details/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/details/helpers.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/details/polymorphic_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/details/polymorphic_impl.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/details/static_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/details/static_object.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/details/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/details/traits.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/details/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/details/util.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/external/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/external/base64.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/external/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/external/rapidjson/document.h -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/external/rapidjson/filestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/external/rapidjson/filestream.h -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/external/rapidjson/genericstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/external/rapidjson/genericstream.h -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/external/rapidjson/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/external/rapidjson/internal/pow10.h -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/external/rapidjson/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/external/rapidjson/internal/stack.h -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/external/rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/external/rapidjson/internal/strfunc.h -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/external/rapidjson/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/external/rapidjson/license.txt -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/external/rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/external/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/external/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/external/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/external/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/external/rapidjson/reader.h -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/external/rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/external/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/external/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/external/rapidjson/writer.h -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/external/rapidxml/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/external/rapidxml/license.txt -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/external/rapidxml/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/external/rapidxml/manual.html -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/external/rapidxml/rapidxml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/external/rapidxml/rapidxml.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/external/rapidxml/rapidxml_iterators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/external/rapidxml/rapidxml_iterators.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/external/rapidxml/rapidxml_print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/external/rapidxml/rapidxml_print.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/external/rapidxml/rapidxml_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/external/rapidxml/rapidxml_utils.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/macros.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/types/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/types/array.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/types/base_class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/types/base_class.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/types/bitset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/types/bitset.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/types/boost_variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/types/boost_variant.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/types/chrono.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/types/chrono.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/types/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/types/common.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/types/complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/types/complex.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/types/deque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/types/deque.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/types/forward_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/types/forward_list.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/types/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/types/list.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/types/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/types/map.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/types/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/types/memory.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/types/polymorphic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/types/polymorphic.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/types/queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/types/queue.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/types/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/types/set.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/types/stack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/types/stack.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/types/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/types/string.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/types/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/types/tuple.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/types/unordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/types/unordered_map.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/types/unordered_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/types/unordered_set.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/types/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/types/utility.hpp -------------------------------------------------------------------------------- /3rdparty/cereal-1.1.1/include/cereal/types/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/cereal-1.1.1/include/cereal/types/vector.hpp -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/CHANGES -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/CONTRIBUTORS -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/LICENSE -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/Makefile.am -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/Makefile.in -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/README -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/aclocal.m4 -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/build-aux/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/build-aux/config.guess -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/build-aux/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/build-aux/config.h.in -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/build-aux/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/build-aux/config.sub -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/build-aux/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/build-aux/depcomp -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/build-aux/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/build-aux/install-sh -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/build-aux/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/build-aux/ltmain.sh -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/build-aux/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/build-aux/missing -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/cmake/internal_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/cmake/internal_utils.cmake -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/codegear/gtest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/codegear/gtest.cbproj -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/codegear/gtest.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/codegear/gtest.groupproj -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/codegear/gtest_all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/codegear/gtest_all.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/codegear/gtest_link.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/codegear/gtest_link.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/codegear/gtest_main.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/codegear/gtest_main.cbproj -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/codegear/gtest_unittest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/codegear/gtest_unittest.cbproj -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/configure -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/configure.ac -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/fused-src/gtest/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/fused-src/gtest/gtest-all.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/fused-src/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/fused-src/gtest/gtest.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/fused-src/gtest/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/fused-src/gtest/gtest_main.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/include/gtest/gtest-param-test.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/include/gtest/gtest-param-test.h.pump -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/include/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/include/gtest/gtest-printers.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/include/gtest/gtest.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/include/gtest/internal/gtest-death-test-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/include/gtest/internal/gtest-death-test-internal.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/include/gtest/internal/gtest-filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/include/gtest/internal/gtest-filepath.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/include/gtest/internal/gtest-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/include/gtest/internal/gtest-internal.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/include/gtest/internal/gtest-linked_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/include/gtest/internal/gtest-linked_ptr.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/include/gtest/internal/gtest-param-util-generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/include/gtest/internal/gtest-param-util-generated.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/include/gtest/internal/gtest-param-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/include/gtest/internal/gtest-param-util.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/include/gtest/internal/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/include/gtest/internal/gtest-port.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/include/gtest/internal/gtest-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/include/gtest/internal/gtest-string.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/include/gtest/internal/gtest-tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/include/gtest/internal/gtest-tuple.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/include/gtest/internal/gtest-tuple.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/include/gtest/internal/gtest-tuple.h.pump -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/include/gtest/internal/gtest-type-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/include/gtest/internal/gtest-type-util.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/include/gtest/internal/gtest-type-util.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/include/gtest/internal/gtest-type-util.h.pump -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/m4/gtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/m4/gtest.m4 -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/m4/libtool.m4 -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/m4/ltoptions.m4 -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/m4/ltsugar.m4 -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/m4/ltversion.m4 -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/make/Makefile -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/msvc/gtest-md.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/msvc/gtest-md.sln -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/msvc/gtest-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/msvc/gtest-md.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/msvc/gtest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/msvc/gtest.sln -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/msvc/gtest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/msvc/gtest.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/msvc/gtest_main-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/msvc/gtest_main-md.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/msvc/gtest_main.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/msvc/gtest_main.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/msvc/gtest_prod_test-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/msvc/gtest_prod_test-md.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/msvc/gtest_prod_test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/msvc/gtest_prod_test.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/msvc/gtest_unittest-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/msvc/gtest_unittest-md.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/msvc/gtest_unittest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/msvc/gtest_unittest.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/samples/prime_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/samples/prime_tables.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/samples/sample1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/samples/sample1.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/samples/sample1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/samples/sample1.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/samples/sample10_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/samples/sample10_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/samples/sample1_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/samples/sample1_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/samples/sample2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/samples/sample2.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/samples/sample2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/samples/sample2.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/samples/sample2_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/samples/sample2_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/samples/sample3-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/samples/sample3-inl.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/samples/sample3_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/samples/sample3_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/samples/sample4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/samples/sample4.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/samples/sample4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/samples/sample4.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/samples/sample4_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/samples/sample4_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/samples/sample5_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/samples/sample5_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/samples/sample6_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/samples/sample6_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/samples/sample7_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/samples/sample7_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/samples/sample8_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/samples/sample8_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/samples/sample9_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/samples/sample9_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/scripts/fuse_gtest_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/scripts/fuse_gtest_files.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/scripts/gen_gtest_pred_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/scripts/gen_gtest_pred_impl.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/scripts/gtest-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/scripts/gtest-config.in -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/scripts/pump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/scripts/pump.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/scripts/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/scripts/test/Makefile -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/src/gtest-all.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/src/gtest-death-test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/src/gtest-filepath.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/src/gtest-port.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/src/gtest-printers.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/src/gtest-test-part.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/src/gtest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/src/gtest_main.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest-death-test_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest-death-test_ex_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest-death-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest-death-test_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest-filepath_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest-filepath_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest-linked_ptr_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest-linked_ptr_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest-listener_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest-listener_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest-message_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest-message_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest-options_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest-options_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest-param-test2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest-param-test2_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest-param-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest-param-test_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest-param-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest-param-test_test.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest-port_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest-port_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest-printers_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest-printers_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest-test-part_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest-test-part_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest-tuple_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest-tuple_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest-typed-test2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest-typed-test2_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest-typed-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest-typed-test_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest-typed-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest-typed-test_test.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest-unittest-api_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest-unittest-api_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_all_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_break_on_failure_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_break_on_failure_unittest.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_break_on_failure_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_break_on_failure_unittest_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_catch_exceptions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_catch_exceptions_test.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_catch_exceptions_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_catch_exceptions_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_color_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_color_test.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_color_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_color_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_env_var_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_env_var_test.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_env_var_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_env_var_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_environment_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_environment_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_filter_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_filter_unittest.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_filter_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_filter_unittest_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_help_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_help_test.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_help_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_help_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_list_tests_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_list_tests_unittest.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_list_tests_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_list_tests_unittest_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_main_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_main_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_no_test_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_no_test_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_output_test.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_output_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_output_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_output_test_golden_lin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_output_test_golden_lin.txt -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_pred_impl_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_pred_impl_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_premature_exit_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_premature_exit_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_prod_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_prod_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_repeat_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_repeat_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_shuffle_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_shuffle_test.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_shuffle_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_shuffle_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_sole_header_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_sole_header_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_stress_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_test_utils.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_throw_on_failure_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_throw_on_failure_ex_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_throw_on_failure_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_throw_on_failure_test.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_throw_on_failure_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_throw_on_failure_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_uninitialized_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_uninitialized_test.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_uninitialized_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_uninitialized_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_xml_outfile1_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_xml_outfile1_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_xml_outfile2_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_xml_outfile2_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_xml_outfiles_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_xml_outfiles_test.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_xml_output_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_xml_output_unittest.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_xml_output_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_xml_output_unittest_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/gtest_xml_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/gtest_xml_test_utils.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/production.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/production.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/test/production.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/test/production.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/xcode/Config/DebugProject.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/xcode/Config/DebugProject.xcconfig -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/xcode/Config/FrameworkTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/xcode/Config/FrameworkTarget.xcconfig -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/xcode/Config/General.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/xcode/Config/General.xcconfig -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/xcode/Config/ReleaseProject.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/xcode/Config/ReleaseProject.xcconfig -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/xcode/Config/StaticLibraryTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/xcode/Config/StaticLibraryTarget.xcconfig -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/xcode/Config/TestTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/xcode/Config/TestTarget.xcconfig -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/xcode/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/xcode/Resources/Info.plist -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/Info.plist -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/runtests.sh -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/widget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/widget.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/widget.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/widget_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/widget_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/xcode/Scripts/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/xcode/Scripts/runtests.sh -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/xcode/Scripts/versiongenerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/xcode/Scripts/versiongenerate.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.7.0/xcode/gtest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/3rdparty/gtest-1.7.0/xcode/gtest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/README.md -------------------------------------------------------------------------------- /apps/rcr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/apps/rcr/CMakeLists.txt -------------------------------------------------------------------------------- /apps/rcr/data/face_landmarks_model_rcr_22.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/apps/rcr/data/face_landmarks_model_rcr_22.bin -------------------------------------------------------------------------------- /apps/rcr/data/face_landmarks_model_rcr_cofw_29.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/apps/rcr/data/face_landmarks_model_rcr_cofw_29.bin -------------------------------------------------------------------------------- /apps/rcr/data/mean_ibug_lfpw_68.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/apps/rcr/data/mean_ibug_lfpw_68.txt -------------------------------------------------------------------------------- /apps/rcr/data/rcr_eval.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/apps/rcr/data/rcr_eval.cfg -------------------------------------------------------------------------------- /apps/rcr/data/rcr_training_22.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/apps/rcr/data/rcr_training_22.cfg -------------------------------------------------------------------------------- /apps/rcr/rcr-detect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/apps/rcr/rcr-detect.cpp -------------------------------------------------------------------------------- /apps/rcr/rcr-track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/apps/rcr/rcr-track.cpp -------------------------------------------------------------------------------- /apps/rcr/rcr-train.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/apps/rcr/rcr-train.cpp -------------------------------------------------------------------------------- /cmake/FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/cmake/FindEigen3.cmake -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/doc/Doxyfile.in -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/data/ibug_lfpw_trainset/image_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/examples/data/ibug_lfpw_trainset/image_0001.png -------------------------------------------------------------------------------- /examples/data/ibug_lfpw_trainset/image_0001.pts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/examples/data/ibug_lfpw_trainset/image_0001.pts -------------------------------------------------------------------------------- /examples/data/ibug_lfpw_trainset/image_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/examples/data/ibug_lfpw_trainset/image_0002.png -------------------------------------------------------------------------------- /examples/data/ibug_lfpw_trainset/image_0002.pts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/examples/data/ibug_lfpw_trainset/image_0002.pts -------------------------------------------------------------------------------- /examples/data/ibug_lfpw_trainset/image_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/examples/data/ibug_lfpw_trainset/image_0003.png -------------------------------------------------------------------------------- /examples/data/ibug_lfpw_trainset/image_0003.pts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/examples/data/ibug_lfpw_trainset/image_0003.pts -------------------------------------------------------------------------------- /examples/data/ibug_lfpw_trainset/image_0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/examples/data/ibug_lfpw_trainset/image_0004.png -------------------------------------------------------------------------------- /examples/data/ibug_lfpw_trainset/image_0004.pts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/examples/data/ibug_lfpw_trainset/image_0004.pts -------------------------------------------------------------------------------- /examples/data/ibug_lfpw_trainset/image_0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/examples/data/ibug_lfpw_trainset/image_0005.png -------------------------------------------------------------------------------- /examples/data/ibug_lfpw_trainset/image_0005.pts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/examples/data/ibug_lfpw_trainset/image_0005.pts -------------------------------------------------------------------------------- /examples/data/ibug_lfpw_trainset/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/examples/data/ibug_lfpw_trainset/notes.txt -------------------------------------------------------------------------------- /examples/data/mean_ibug_lfpw_68.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/examples/data/mean_ibug_lfpw_68.txt -------------------------------------------------------------------------------- /examples/hog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/examples/hog.c -------------------------------------------------------------------------------- /examples/hog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/examples/hog.h -------------------------------------------------------------------------------- /examples/landmark_detection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/examples/landmark_detection.cpp -------------------------------------------------------------------------------- /examples/pose_estimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/examples/pose_estimation.cpp -------------------------------------------------------------------------------- /examples/simple_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/examples/simple_function.cpp -------------------------------------------------------------------------------- /include/rcr/adaptive_vlhog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/include/rcr/adaptive_vlhog.hpp -------------------------------------------------------------------------------- /include/rcr/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/include/rcr/helpers.hpp -------------------------------------------------------------------------------- /include/rcr/hog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/include/rcr/hog.c -------------------------------------------------------------------------------- /include/rcr/hog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/include/rcr/hog.h -------------------------------------------------------------------------------- /include/rcr/landmark.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/include/rcr/landmark.hpp -------------------------------------------------------------------------------- /include/rcr/landmarks_io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/include/rcr/landmarks_io.hpp -------------------------------------------------------------------------------- /include/rcr/model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/include/rcr/model.hpp -------------------------------------------------------------------------------- /include/superviseddescent/regressors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/include/superviseddescent/regressors.hpp -------------------------------------------------------------------------------- /include/superviseddescent/superviseddescent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/include/superviseddescent/superviseddescent.hpp -------------------------------------------------------------------------------- /include/superviseddescent/utils/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/include/superviseddescent/utils/ThreadPool.h -------------------------------------------------------------------------------- /include/superviseddescent/utils/mat_cerealisation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/include/superviseddescent/utils/mat_cerealisation.hpp -------------------------------------------------------------------------------- /include/superviseddescent/utils/mat_serialization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/include/superviseddescent/utils/mat_serialization.hpp -------------------------------------------------------------------------------- /include/superviseddescent/verbose_solver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/include/superviseddescent/verbose_solver.hpp -------------------------------------------------------------------------------- /initial_cache.cmake.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/initial_cache.cmake.template -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/test_LinearRegressor1D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/tests/test_LinearRegressor1D.cpp -------------------------------------------------------------------------------- /tests/test_LinearRegressorND.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/tests/test_LinearRegressorND.cpp -------------------------------------------------------------------------------- /tests/test_SupervisedDescentOptimiser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/superviseddescent/HEAD/tests/test_SupervisedDescentOptimiser.cpp --------------------------------------------------------------------------------