diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-08-30 21:54:35 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-08-30 21:55:47 +0530 |
commit | ef8272ae34c905f61cb8fe1fcce9d0c1238c0c37 (patch) | |
tree | 00e57b068dd038f1d87926fe7d0893197f63e99d /src/jobs.c | |
parent | 404b98c126a1eb2dc48e54ddfd6c02d3d49d3333 (diff) |
solver_highs: drop zero values from constraint matrix
Diffstat (limited to 'src/jobs.c')
-rw-r--r-- | src/jobs.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -224,6 +224,9 @@ int job_cost(struct job *job) int ret; char *pname; + if (job->insubstituters) + return 0; + if (!evanix_opts.max_time) return 1; |