Fixup Basic Example

This commit is contained in:
Mizux Seiha
2020-12-07 16:16:23 +01:00
parent 0e615d5ad9
commit 1e25c371c9
2 changed files with 2 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ import com.google.ortools.linearsolver.MPVariable;
// [END import]
/** Minimal Linear Programming example to showcase calling the solver.*/
public class SimpleLpProgram {
public class BasicExample {
public static void main(String[] args) throws Exception {
Loader.loadNativeLibraries();
// [START solver]