| 134 | // ---------------------------------------------------------------------------------------- |
| 135 | |
| 136 | int main() |
| 137 | { |
| 138 | // Run the test without any manifold regularization. |
| 139 | test_manifold_regularization(0); |
| 140 | |
| 141 | // Run the test with manifold regularization. You can think of this number as |
| 142 | // a measure of how much we trust the manifold assumption. So if you are really |
| 143 | // confident that you can select neighboring points which should have the same |
| 144 | // classification then make this number big. |
| 145 | test_manifold_regularization(10000.0); |
| 146 | } |
| 147 | |
| 148 | // ---------------------------------------------------------------------------------------- |
| 149 |
nothing calls this directly
no test coverage detected