@@ -79,17 +79,17 @@ impl Default for UnstableEntriesMetadata {
79
79
80
80
/// The calibration stage will measure the average exec time and the target's stability for this input.
81
81
#[ derive( Debug , Clone ) ]
82
- pub struct CalibrationStage < C , E , I , O , OT , S > {
82
+ pub struct CalibrationStage < C , I , O , OT , S > {
83
83
map_observer_handle : Handle < C > ,
84
84
map_name : Cow < ' static , str > ,
85
85
name : Cow < ' static , str > ,
86
86
stage_max : usize ,
87
87
/// If we should track stability
88
88
track_stability : bool ,
89
- phantom : PhantomData < ( E , I , O , OT , S ) > ,
89
+ phantom : PhantomData < ( I , O , OT , S ) > ,
90
90
}
91
91
92
- impl < C , E , EM , I , O , OT , S , Z > Stage < E , EM , S , Z > for CalibrationStage < C , E , I , O , OT , S >
92
+ impl < C , E , EM , I , O , OT , S , Z > Stage < E , EM , S , Z > for CalibrationStage < C , I , O , OT , S >
93
93
where
94
94
E : Executor < EM , I , S , Z > + HasObservers < Observers = OT > ,
95
95
EM : EventFirer < I , S > ,
@@ -372,7 +372,7 @@ where
372
372
}
373
373
}
374
374
375
- impl < C , E , I , O , OT , S > Restartable < S > for CalibrationStage < C , E , I , O , OT , S >
375
+ impl < C , I , O , OT , S > Restartable < S > for CalibrationStage < C , I , O , OT , S >
376
376
where
377
377
S : HasMetadata + HasNamedMetadata + HasCurrentCorpusId ,
378
378
{
@@ -391,7 +391,7 @@ where
391
391
}
392
392
}
393
393
394
- impl < C , E , I , O , OT , S > CalibrationStage < C , E , I , O , OT , S >
394
+ impl < C , I , O , OT , S > CalibrationStage < C , I , O , OT , S >
395
395
where
396
396
C : AsRef < O > ,
397
397
O : MapObserver ,
@@ -429,7 +429,7 @@ where
429
429
}
430
430
}
431
431
432
- impl < C , E , I , O , OT , S > Named for CalibrationStage < C , E , I , O , OT , S > {
432
+ impl < C , I , O , OT , S > Named for CalibrationStage < C , I , O , OT , S > {
433
433
fn name ( & self ) -> & Cow < ' static , str > {
434
434
& self . name
435
435
}
0 commit comments