File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 5454packages
5555build /
5656build_cmake /
57+ build_all /
58+ build_dotnet /
59+ build_java /
60+ build_python /
5761build_cross /
5862build_make /
5963install_make /
Original file line number Diff line number Diff line change 1313
1414using System ;
1515using Xunit ;
16-
1716using Google . OrTools . ConstraintSolver ;
1817using Google . OrTools . Routing ;
1918
@@ -27,9 +26,11 @@ public class RoutingSolverTest
2726 public void SolverTest ( bool callGC )
2827 {
2928 // Create Routing Index Manager
30- RoutingIndexManager manager = new RoutingIndexManager ( 5 /*locations*/ , 1 /*vehicle*/ , 0 /*depot*/ ) ;
29+ IndexManager manager = new IndexManager ( 5 /*locations*/ , 1 /*vehicle*/ , 0 /*depot*/ ) ;
30+ Assert . NotNull ( manager ) ;
3131 // Create Routing Model.
32- RoutingModel routing = new RoutingModel ( manager ) ;
32+ Model routing = new Model ( manager ) ;
33+ Assert . NotNull ( routing ) ;
3334 // Create a distance callback.
3435 int transitCallbackIndex = routing . RegisterTransitCallback ( ( long fromIndex , long toIndex ) =>
3536 {
You can’t perform that action at this time.
0 commit comments