Sync github with google

This commit is contained in:
Corentin Le Molgat
2021-10-22 00:50:21 +02:00
parent 960595d1d6
commit eb0f319cd6
6 changed files with 18 additions and 25 deletions

View File

@@ -22,7 +22,7 @@ import com.google.ortools.sat.IntVar;
/** Solves a problem with a time limit. */
public final class SolveWithTimeLimitSampleSat {
public static void main(String[] args) throws Exception {
public static void main(String[] args) {
Loader.loadNativeLibraries();
// Create the model.
CpModel model = new CpModel();
@@ -46,7 +46,6 @@ public final class SolveWithTimeLimitSampleSat {
System.out.println("z = " + solver.value(z));
}
}
private SolveWithTimeLimitSampleSat() {}
}
// [END program]