File tree 2 files changed +14
-2
lines changed
2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,16 @@ fn benchmark(c: &mut Criterion) {
59
59
rinex_formatting ( & rinex, & mut buffer) ;
60
60
} )
61
61
} ) ;
62
+
63
+ // Small CRINEX (V3)
64
+ let rinex = rinex. rnx2crnx ( ) ;
65
+
66
+ formatting_grp. bench_function ( "CRNX/V3" , |b| {
67
+ b. iter ( || {
68
+ rinex_formatting ( & rinex, & mut buffer) ;
69
+ } )
70
+ } ) ;
71
+
62
72
formatting_grp. finish ( ) ;
63
73
}
64
74
Original file line number Diff line number Diff line change @@ -136,10 +136,12 @@ impl<const M: usize> CompressorExpert<M> {
136
136
137
137
if let Some ( clk) = v. clock {
138
138
// TODO: clock is not correctly supported yet
139
- writeln ! ( w, "{}" , clk. offset_s) ?;
139
+ if !self . epoch_compression {
140
+ writeln ! ( w, "{}" , clk. offset_s) ?;
141
+ }
140
142
} else {
141
143
// No clock: BLANKed line
142
- writeln ! ( w, "{}" , " ") ?;
144
+ write ! ( w, "\n " ) ?;
143
145
}
144
146
145
147
// For each SV
You can’t perform that action at this time.
0 commit comments