Skip to content

Commit

Permalink
Test approx
Browse files Browse the repository at this point in the history
  • Loading branch information
mldiego committed Jul 6, 2024
1 parent 68ab4a0 commit 00efabc
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,12 @@

reachOptions = struct;
reachOptions.lp_solver = "linprog"; % glpk is the worst, gurobi works better for some of the larger benchmarks, linprog faster for simple LPs
% reachOptions.reachMethod = 'approx-star';
reachOptions.reachMethod = 'approx-star';
% reachOptions.device = "gpu";
reachOptions.reachMethod = 'exact-star';
% reachOptions.reachMethod = 'exact-star';
% reachOptions.device = 'cpu';
numCores = feature('numcores');
reachOptions.numCores = numCores; % physical cores
% numCores = feature('numcores');
% reachOptions.numCores = numCores; % physical cores


% Check if property was violated earlier
Expand Down

0 comments on commit 00efabc

Please sign in to comment.