ai.timefold.solver.spring.boot.autoconfigure.config.SolverManagerProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of timefold-solver-spring-boot-autoconfigure Show documentation
Show all versions of timefold-solver-spring-boot-autoconfigure Show documentation
Timefold solves planning problems.
This lightweight, embeddable planning engine implements powerful and scalable algorithms
to optimize business resource scheduling and planning.
This module contains the Spring Boot autoconfigure.
The newest version!
package ai.timefold.solver.spring.boot.autoconfigure.config;
public class SolverManagerProperties {
/**
* The number of solvers that run in parallel. This directly influences CPU consumption.
* Defaults to "AUTO".
* Other options include a number or formula based on the available processor count.
*/
private String parallelSolverCount;
// ************************************************************************
// Getters/setters
// ************************************************************************
public String getParallelSolverCount() {
return parallelSolverCount;
}
public void setParallelSolverCount(String parallelSolverCount) {
this.parallelSolverCount = parallelSolverCount;
}
}