# #Thu Jan 19 22:06:24 EST 2023 org.optaplanner.quarkus.config.TerminationRuntimeConfig.spentLimit=How long the solver can run.\nFor example\: "30s" is 30 seconds. "5m" is 5 minutes. "2h" is 2 hours. "1d" is 1 day.\nAlso supports ISO-8601 format, see {@link Duration}. org.optaplanner.quarkus.config.TerminationRuntimeConfig.bestScoreLimit=Terminates the solver when a specific or higher score has been reached.\nFor example\: "0hard/-1000soft" terminates when the best score changes from "0hard/-1200soft" to "0hard/-900soft".\nWildcards are supported to replace numbers.\nFor example\: "0hard/*soft" to terminate when any feasible score is reached. org.optaplanner.quarkus.config.OptaPlannerRuntimeConfig.solver=During run time, this is translated into OptaPlanner's {@link SolverConfig}\nruntime properties. org.optaplanner.quarkus.config.OptaPlannerRuntimeConfig.solverManager=Configuration properties that overwrite OptaPlanner's {@link SolverManagerConfig}. org.optaplanner.quarkus.config.SolverRuntimeConfig.termination=Configuration properties that overwrite OptaPlanner's {@link TerminationConfig}. org.optaplanner.quarkus.config.TerminationRuntimeConfig.unimprovedSpentLimit=How long the solver can run without finding a new best solution after finding a new best solution.\nFor example\: "30s" is 30 seconds. "5m" is 5 minutes. "2h" is 2 hours. "1d" is 1 day.\nAlso supports ISO-8601 format, see {@link Duration}. org.optaplanner.quarkus.config.SolverRuntimeConfig.moveThreadCount=Enable multithreaded solving for a single problem, which increases CPU consumption.\nDefaults to {@value SolverConfig\#MOVE_THREAD_COUNT_NONE}.\nOther options include {@value SolverConfig\#MOVE_THREAD_COUNT_AUTO}, a number\nor formula based on the available processor count. org.optaplanner.quarkus.config.SolverManagerRuntimeConfig.parallelSolverCount=The number of solvers that run in parallel. This directly influences CPU consumption.\nDefaults to {@value SolverManagerConfig\#PARALLEL_SOLVER_COUNT_AUTO}.\nOther options include a number or formula based on the available processor count.