File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -170,4 +170,9 @@ public VSharpOptions(
170
170
/// </summary>
171
171
public DirectoryInfo RenderedTestsDirectoryInfo =>
172
172
Directory . Exists ( RenderedTestsDirectory ) ? new DirectoryInfo ( RenderedTestsDirectory ) : null ;
173
+
174
+ public string GetDefaultPathToModel ( )
175
+ {
176
+ return DefaultPathToModel ;
177
+ }
173
178
}
Original file line number Diff line number Diff line change @@ -355,7 +355,7 @@ public static int Main(string[] args)
355
355
"Time for test generation in seconds. Negative value means no timeout." ) ;
356
356
var pathToModelOption = new Option < string > (
357
357
aliases : new [ ] { "--model" , "-m" } ,
358
- ( ) => defaultOptions . PathToModel ,
358
+ ( ) => defaultOptions . GetDefaultPathToModel ( ) ,
359
359
"Path to ONNX file with model for AI searcher." ) ;
360
360
var solverTimeoutOption = new Option < int > (
361
361
aliases : new [ ] { "--solver-timeout" , "-st" } ,
You can’t perform that action at this time.
0 commit comments