@@ -111,7 +111,7 @@ public IEnumerable<FileInfo> Results()
111111
112112 public static class TestGenerator
113113 {
114- private class Reporter : IReporter
114+ private class Reporter : IReporter
115115 {
116116 private readonly UnitTests _unitTests ;
117117 private readonly bool _isQuiet ;
@@ -124,7 +124,7 @@ public Reporter(UnitTests unitTests, bool isQuiet)
124124
125125 public void ReportFinished ( UnitTest unitTest ) => _unitTests . GenerateTest ( unitTest ) ;
126126 public void ReportException ( UnitTest unitTest ) => _unitTests . GenerateError ( unitTest ) ;
127- public void ReportIIE ( InsufficientInformationException iie ) { }
127+ public void ReportIIE ( InsufficientInformationException iie ) { }
128128
129129 public void ReportInternalFail ( Method ? method , Exception exn )
130130 {
@@ -179,7 +179,7 @@ private static Statistics StartExploration(
179179 explorationMode : explorationMode . NewTestCoverageMode (
180180 coverageZone ,
181181 options . Timeout > 0 ? searchMode . NewFairMode ( baseSearchMode ) : baseSearchMode
182-
182+
183183 ) ,
184184 recThreshold : options . RecursionThreshold ,
185185 solverTimeout : options . SolverTimeout ,
@@ -191,8 +191,11 @@ private static Statistics StartExploration(
191191 stopOnCoverageAchieved : 100 ,
192192 randomSeed : options . RandomSeed ,
193193 stepsLimit : options . StepsLimit ,
194- aiAgentTrainingOptions : options . AIAgentTrainingOptions == null ? FSharpOption < AIAgentTrainingOptions > . None : FSharpOption < AIAgentTrainingOptions > . Some ( options . AIAgentTrainingOptions ) ,
195- pathToModel : options . PathToModel == null ? FSharpOption < string > . None : FSharpOption < string > . Some ( options . PathToModel ) ) ;
194+ aiAgentTrainingOptions : options . AIAgentTrainingOptions == null ? FSharpOption < AIAgentTrainingOptions > . None : FSharpOption < AIAgentTrainingOptions > . Some ( options . AIAgentTrainingOptions ) ,
195+ pathToModel : options . PathToModel == null ? FSharpOption < string > . None : FSharpOption < string > . Some ( options . PathToModel ) ,
196+ useGPU : options . UseGPU == null ? FSharpOption < bool > . None : FSharpOption < bool > . Some ( options . UseGPU ) ,
197+ optimize : options . Optimize == null ? FSharpOption < bool > . None : FSharpOption < bool > . Some ( options . Optimize )
198+ ) ;
196199
197200 var fuzzerOptions =
198201 new FuzzerOptions (
@@ -326,7 +329,7 @@ private static int CheckCoverage(
326329 public static Statistics Cover ( MethodBase method , VSharpOptions options = new ( ) )
327330 {
328331 AssemblyManager . LoadCopy ( method . Module . Assembly ) ;
329- var methods = new List < MethodBase > { method } ;
332+ var methods = new List < MethodBase > { method } ;
330333 var statistics = StartExploration ( methods , coverageZone . MethodZone , options ) ;
331334
332335 if ( options . RenderTests )
0 commit comments