├── .gitignore ├── DeformationLearningSolver ├── bin │ ├── SSDSolverCmd │ │ ├── 2014 │ │ │ └── plug-ins │ │ │ │ ├── SSDSolverCmd.bundle │ │ │ │ ├── SSDSolverCmd.mll │ │ │ │ └── SSDSolverCmd.so │ │ ├── 2015 │ │ │ └── plug-ins │ │ │ │ ├── SSDSolverCmd.bundle │ │ │ │ ├── SSDSolverCmd.mll │ │ │ │ └── SSDSolverCmd.so │ │ ├── 2016 │ │ │ └── plug-ins │ │ │ │ ├── SSDSolverCmd.bundle │ │ │ │ ├── SSDSolverCmd.mll │ │ │ │ └── SSDSolverCmd.so │ │ └── 2017 │ │ │ └── plug-ins │ │ │ ├── SSDSolverCmd.bundle │ │ │ ├── SSDSolverCmd.mll │ │ │ └── SSDSolverCmd.so │ └── wbDeltaMushDeformer │ │ ├── 2014 │ │ ├── plug-ins │ │ │ ├── wbDeltaMushDeformer.bundle │ │ │ ├── wbDeltaMushDeformer.mll │ │ │ └── wbDeltaMushDeformer.so │ │ └── scripts │ │ │ └── AEwbDeltaMushTemplate.mel │ │ ├── 2015 │ │ ├── plug-ins │ │ │ ├── wbDeltaMushDeformer.bundle │ │ │ ├── wbDeltaMushDeformer.mll │ │ │ └── wbDeltaMushDeformer.so │ │ └── scripts │ │ │ └── AEwbDeltaMushTemplate.mel │ │ ├── 2016 │ │ ├── plug-ins │ │ │ ├── wbDeltaMushDeformer.bundle │ │ │ ├── wbDeltaMushDeformer.mll │ │ │ └── wbDeltaMushDeformer.so │ │ └── scripts │ │ │ └── AEwbDeltaMushTemplate.mel │ │ └── 2017 │ │ ├── plug-ins │ │ ├── wbDeltaMushDeformer.bundle │ │ ├── wbDeltaMushDeformer.mll │ │ └── wbDeltaMushDeformer.so │ │ └── scripts │ │ └── AEwbDeltaMushTemplate.mel ├── icons │ └── wbDeltaMush.png ├── install.mel ├── modules │ └── DeformationLearningSolver.mod └── scripts │ └── DLS │ ├── __init__.py │ ├── core │ ├── __init__.py │ ├── fnData.py │ ├── learningFunc.py │ ├── miscFunc.py │ ├── samplingFunc.py │ └── utils.py │ ├── startup │ ├── __init__.py │ └── setup.py │ └── widget │ ├── __init__.py │ ├── aboutDialog.py │ ├── axisOptionWindow.py │ ├── baseOptionWindow.py │ ├── baseTab.py │ ├── config.ini │ ├── customAttributeEditor.py │ ├── learningTab.py │ ├── mainWindow.py │ ├── miscTab.py │ ├── optionWindow.py │ ├── samplingTab.py │ ├── ui │ ├── aboutDialog.ui │ ├── axisWindow.ui │ ├── customAttributeEditor.ui │ ├── learningTab.ui │ ├── miscTab.ui │ ├── optionWindow.ui │ └── samplingTab.ui │ └── utils.py ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/.gitignore -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/SSDSolverCmd/2014/plug-ins/SSDSolverCmd.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/SSDSolverCmd/2014/plug-ins/SSDSolverCmd.bundle -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/SSDSolverCmd/2014/plug-ins/SSDSolverCmd.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/SSDSolverCmd/2014/plug-ins/SSDSolverCmd.mll -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/SSDSolverCmd/2014/plug-ins/SSDSolverCmd.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/SSDSolverCmd/2014/plug-ins/SSDSolverCmd.so -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/SSDSolverCmd/2015/plug-ins/SSDSolverCmd.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/SSDSolverCmd/2015/plug-ins/SSDSolverCmd.bundle -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/SSDSolverCmd/2015/plug-ins/SSDSolverCmd.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/SSDSolverCmd/2015/plug-ins/SSDSolverCmd.mll -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/SSDSolverCmd/2015/plug-ins/SSDSolverCmd.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/SSDSolverCmd/2015/plug-ins/SSDSolverCmd.so -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/SSDSolverCmd/2016/plug-ins/SSDSolverCmd.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/SSDSolverCmd/2016/plug-ins/SSDSolverCmd.bundle -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/SSDSolverCmd/2016/plug-ins/SSDSolverCmd.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/SSDSolverCmd/2016/plug-ins/SSDSolverCmd.mll -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/SSDSolverCmd/2016/plug-ins/SSDSolverCmd.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/SSDSolverCmd/2016/plug-ins/SSDSolverCmd.so -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/SSDSolverCmd/2017/plug-ins/SSDSolverCmd.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/SSDSolverCmd/2017/plug-ins/SSDSolverCmd.bundle -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/SSDSolverCmd/2017/plug-ins/SSDSolverCmd.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/SSDSolverCmd/2017/plug-ins/SSDSolverCmd.mll -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/SSDSolverCmd/2017/plug-ins/SSDSolverCmd.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/SSDSolverCmd/2017/plug-ins/SSDSolverCmd.so -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/wbDeltaMushDeformer/2014/plug-ins/wbDeltaMushDeformer.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/wbDeltaMushDeformer/2014/plug-ins/wbDeltaMushDeformer.bundle -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/wbDeltaMushDeformer/2014/plug-ins/wbDeltaMushDeformer.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/wbDeltaMushDeformer/2014/plug-ins/wbDeltaMushDeformer.mll -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/wbDeltaMushDeformer/2014/plug-ins/wbDeltaMushDeformer.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/wbDeltaMushDeformer/2014/plug-ins/wbDeltaMushDeformer.so -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/wbDeltaMushDeformer/2014/scripts/AEwbDeltaMushTemplate.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/wbDeltaMushDeformer/2014/scripts/AEwbDeltaMushTemplate.mel -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/wbDeltaMushDeformer/2015/plug-ins/wbDeltaMushDeformer.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/wbDeltaMushDeformer/2015/plug-ins/wbDeltaMushDeformer.bundle -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/wbDeltaMushDeformer/2015/plug-ins/wbDeltaMushDeformer.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/wbDeltaMushDeformer/2015/plug-ins/wbDeltaMushDeformer.mll -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/wbDeltaMushDeformer/2015/plug-ins/wbDeltaMushDeformer.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/wbDeltaMushDeformer/2015/plug-ins/wbDeltaMushDeformer.so -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/wbDeltaMushDeformer/2015/scripts/AEwbDeltaMushTemplate.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/wbDeltaMushDeformer/2015/scripts/AEwbDeltaMushTemplate.mel -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/wbDeltaMushDeformer/2016/plug-ins/wbDeltaMushDeformer.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/wbDeltaMushDeformer/2016/plug-ins/wbDeltaMushDeformer.bundle -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/wbDeltaMushDeformer/2016/plug-ins/wbDeltaMushDeformer.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/wbDeltaMushDeformer/2016/plug-ins/wbDeltaMushDeformer.mll -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/wbDeltaMushDeformer/2016/plug-ins/wbDeltaMushDeformer.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/wbDeltaMushDeformer/2016/plug-ins/wbDeltaMushDeformer.so -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/wbDeltaMushDeformer/2016/scripts/AEwbDeltaMushTemplate.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/wbDeltaMushDeformer/2016/scripts/AEwbDeltaMushTemplate.mel -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/wbDeltaMushDeformer/2017/plug-ins/wbDeltaMushDeformer.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/wbDeltaMushDeformer/2017/plug-ins/wbDeltaMushDeformer.bundle -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/wbDeltaMushDeformer/2017/plug-ins/wbDeltaMushDeformer.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/wbDeltaMushDeformer/2017/plug-ins/wbDeltaMushDeformer.mll -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/wbDeltaMushDeformer/2017/plug-ins/wbDeltaMushDeformer.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/wbDeltaMushDeformer/2017/plug-ins/wbDeltaMushDeformer.so -------------------------------------------------------------------------------- /DeformationLearningSolver/bin/wbDeltaMushDeformer/2017/scripts/AEwbDeltaMushTemplate.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/bin/wbDeltaMushDeformer/2017/scripts/AEwbDeltaMushTemplate.mel -------------------------------------------------------------------------------- /DeformationLearningSolver/icons/wbDeltaMush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/icons/wbDeltaMush.png -------------------------------------------------------------------------------- /DeformationLearningSolver/install.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/install.mel -------------------------------------------------------------------------------- /DeformationLearningSolver/modules/DeformationLearningSolver.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/modules/DeformationLearningSolver.mod -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/__init__.py -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/core/__init__.py -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/core/fnData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/core/fnData.py -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/core/learningFunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/core/learningFunc.py -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/core/miscFunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/core/miscFunc.py -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/core/samplingFunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/core/samplingFunc.py -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/core/utils.py -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/startup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/startup/__init__.py -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/startup/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/startup/setup.py -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/widget/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/widget/__init__.py -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/widget/aboutDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/widget/aboutDialog.py -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/widget/axisOptionWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/widget/axisOptionWindow.py -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/widget/baseOptionWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/widget/baseOptionWindow.py -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/widget/baseTab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/widget/baseTab.py -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/widget/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/widget/config.ini -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/widget/customAttributeEditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/widget/customAttributeEditor.py -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/widget/learningTab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/widget/learningTab.py -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/widget/mainWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/widget/mainWindow.py -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/widget/miscTab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/widget/miscTab.py -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/widget/optionWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/widget/optionWindow.py -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/widget/samplingTab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/widget/samplingTab.py -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/widget/ui/aboutDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/widget/ui/aboutDialog.ui -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/widget/ui/axisWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/widget/ui/axisWindow.ui -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/widget/ui/customAttributeEditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/widget/ui/customAttributeEditor.ui -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/widget/ui/learningTab.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/widget/ui/learningTab.ui -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/widget/ui/miscTab.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/widget/ui/miscTab.ui -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/widget/ui/optionWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/widget/ui/optionWindow.ui -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/widget/ui/samplingTab.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/widget/ui/samplingTab.ui -------------------------------------------------------------------------------- /DeformationLearningSolver/scripts/DLS/widget/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/DeformationLearningSolver/scripts/DLS/widget/utils.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebberHuang/DeformationLearningSolver/HEAD/README.md --------------------------------------------------------------------------------