Skip to content

Commit f732fb4

Browse files
committed
Apply suggestions from code review
1 parent f7ccbd9 commit f732fb4

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

VSharp.Explorer/Explorer.fs

+2-9
Original file line numberDiff line numberDiff line change
@@ -119,16 +119,9 @@ type private SVMExplorer(explorationOptions: ExplorationOptions, statistics: SVM
119119
match mode with
120120
| AIMode ->
121121
let useGPU =
122-
if options.useGPU.IsSome then
123-
options.useGPU.Value
124-
else
125-
false
126-
122+
options.useGPU.IsSome && options.useGPU.Value
127123
let optimize =
128-
if options.optimize.IsSome then
129-
options.optimize.Value
130-
else
131-
false
124+
options.optimize.IsSome && options.optimize.Value
132125

133126
match options.aiOptions with
134127
| Some aiOptions ->

0 commit comments

Comments
 (0)