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(
170170 /// </summary>
171171 public DirectoryInfo RenderedTestsDirectoryInfo =>
172172 Directory . Exists ( RenderedTestsDirectory ) ? new DirectoryInfo ( RenderedTestsDirectory ) : null ;
173+
174+ public string GetDefaultPathToModel ( )
175+ {
176+ return DefaultPathToModel ;
177+ }
173178}
Original file line number Diff line number Diff line change @@ -355,7 +355,7 @@ public static int Main(string[] args)
355355 "Time for test generation in seconds. Negative value means no timeout." ) ;
356356 var pathToModelOption = new Option < string > (
357357 aliases : new [ ] { "--model" , "-m" } ,
358- ( ) => defaultOptions . PathToModel ,
358+ ( ) => defaultOptions . GetDefaultPathToModel ( ) ,
359359 "Path to ONNX file with model for AI searcher." ) ;
360360 var solverTimeoutOption = new Option < int > (
361361 aliases : new [ ] { "--solver-timeout" , "-st" } ,
You can’t perform that action at this time.
0 commit comments