Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
Parzival-05 committed Dec 30, 2024
1 parent f7ccbd9 commit f732fb4
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions VSharp.Explorer/Explorer.fs
Original file line number Diff line number Diff line change
Expand Up @@ -119,16 +119,9 @@ type private SVMExplorer(explorationOptions: ExplorationOptions, statistics: SVM
match mode with
| AIMode ->
let useGPU =
if options.useGPU.IsSome then
options.useGPU.Value
else
false

options.useGPU.IsSome && options.useGPU.Value
let optimize =
if options.optimize.IsSome then
options.optimize.Value
else
false
options.optimize.IsSome && options.optimize.Value

match options.aiOptions with
| Some aiOptions ->
Expand Down

0 comments on commit f732fb4

Please sign in to comment.