You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What version of OR-Tools and what language are you using?
Version: v9.12
Language: Java
Which solver are you using (e.g. CP-SAT, Routing Solver, GLOP, BOP, Gurobi)
Not relevant I think but I use ModelBuilder with SCIP
What operating system (Linux, Windows, ...) and version?
MacOS M1
Java corretto 21.0.6 aarch64 (same results on Java 8 and 17)
Have tested on linux and that works fine.
What did you do?
Steps to reproduce the behavior:
plugins {
id 'java'
}
group ='dev.claudio'
version ='1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation('com.google.ortools:ortools-java:9.12.4544')
// implementation('com.google.ortools:ortools-java:9.11.4210')
}
Anything else we should know about your project / environment
It doesn't seem like there's a lot of CPU usage. I'm not sure how to analyse profiler data:
The text was updated successfully, but these errors were encountered:
Once loaded for the first time, Loader.java will immediatelly return. It's not much of a problem in production for us but it is a problem for unit tests and running tests quickly during development.
/** Unpack and Load the native libraries needed for using ortools-java. */privatestaticbooleanloaded = false;
publicstaticsynchronizedvoidloadNativeLibraries() {
// prints the name of the Operating System// System.out.println("OS: " + System.getProperty("os.name"));if (loaded) {
return;
}
...
}
What version of OR-Tools and what language are you using?
Version: v9.12
Language: Java
Which solver are you using (e.g. CP-SAT, Routing Solver, GLOP, BOP, Gurobi)
Not relevant I think but I use ModelBuilder with SCIP
What operating system (Linux, Windows, ...) and version?
MacOS M1
Java corretto 21.0.6 aarch64 (same results on Java 8 and 17)
Have tested on linux and that works fine.
What did you do?
Steps to reproduce the behavior:
Time taken: 13.387 seconds
Time taken: 0.948 seconds
Anything else we should know about your project / environment

It doesn't seem like there's a lot of CPU usage. I'm not sure how to analyse profiler data:
The text was updated successfully, but these errors were encountered: