@@ -94,37 +94,37 @@ function ShootoutSet(probs,setups;probaux=nothing,numruns=20,
94
94
return ShootoutSet (shootouts,probs,probaux,N,winners)
95
95
end
96
96
97
- length (shoot:: Shootout ) = shoot. N
97
+ Base . length (shoot:: Shootout ) = shoot. N
98
98
Base. size (shoot:: Shootout ) = length (shoot)
99
99
Base. endof (shoot:: Shootout ) = length (shoot)
100
100
Base. getindex (shoot:: Shootout ,i:: Int ) = shoot. effs[i]
101
101
Base. getindex (shoot:: Shootout ,:: Colon ) = shoot. effs
102
102
103
- function print (io:: IO , shoot:: Shootout )
103
+ function Base . print (io:: IO , shoot:: Shootout )
104
104
println (io," Names: $(shoot. names) , Winner: $(shoot. winner) " )
105
105
println (io," Efficiencies: $(shoot. effs) " )
106
106
println (io," EffRatios: $(shoot. effratios[shoot. bestidx,:]) " )
107
107
println (io," Times: $(shoot. times) " )
108
108
println (io," Errors: $(shoot. errors) " )
109
109
end
110
110
111
- function show (io:: IO , shoot:: Shootout )
111
+ function Base . show (io:: IO , shoot:: Shootout )
112
112
println (io," Winner: $(shoot. winner) " )
113
113
println (io," EffRatios: $(shoot. effratios[shoot. bestidx,:]) " )
114
114
end
115
115
116
- length (set:: ShootoutSet ) = set. N
116
+ Base . length (set:: ShootoutSet ) = set. N
117
117
Base. size (set:: ShootoutSet ) = length (set)
118
118
Base. endof (set:: ShootoutSet ) = length (set)
119
119
Base. getindex (set:: ShootoutSet ,i:: Int ) = set. shootouts[i]
120
120
Base. getindex (set:: ShootoutSet ,:: Colon ) = set. shootouts
121
121
122
- function print (io:: IO , set:: ShootoutSet )
122
+ function Base . print (io:: IO , set:: ShootoutSet )
123
123
println (io," ShootoutSet of $(set. N) shootouts" )
124
124
println (io," Winners: $(set. winners) " )
125
125
end
126
126
127
- function show (io:: IO , set:: ShootoutSet )
127
+ function Base . show (io:: IO , set:: ShootoutSet )
128
128
println (io," ShootoutSet of $(set. N) shootouts " )
129
129
end
130
130
@@ -312,35 +312,35 @@ function WorkPrecisionSet(prob,abstols,reltols,setups;numruns=20,
312
312
return WorkPrecisionSet (wps,N,abstols,reltols,prob,setups,names)
313
313
end
314
314
315
- length (wp:: WorkPrecision ) = wp. N
315
+ Base . length (wp:: WorkPrecision ) = wp. N
316
316
Base. size (wp:: WorkPrecision ) = length (wp)
317
317
Base. endof (wp:: WorkPrecision ) = length (wp)
318
318
Base. getindex (wp:: WorkPrecision ,i:: Int ) = wp. times[i]
319
319
Base. getindex (wp:: WorkPrecision ,:: Colon ) = wp. times
320
320
321
- function print (io:: IO , wp:: WorkPrecision )
321
+ function Base . print (io:: IO , wp:: WorkPrecision )
322
322
println (io," Name: $(wp. name) " )
323
323
println (io," Times: $(wp. times) " )
324
324
println (io," Errors: $(wp. errors) " )
325
325
end
326
326
327
- function show (io:: IO , wp:: WorkPrecision )
327
+ function Base . show (io:: IO , wp:: WorkPrecision )
328
328
println (io," Name: $(wp. name) " )
329
329
println (io," Times: $(wp. times) " )
330
330
println (io," Errors: $(wp. errors) " )
331
331
end
332
332
333
- length (wp_set:: WorkPrecisionSet ) = wp_set. N
333
+ Base . length (wp_set:: WorkPrecisionSet ) = wp_set. N
334
334
Base. size (wp_set:: WorkPrecisionSet ) = length (wp_set)
335
335
Base. endof (wp_set:: WorkPrecisionSet ) = length (wp_set)
336
336
Base. getindex (wp_set:: WorkPrecisionSet ,i:: Int ) = wp_set. wps[i]
337
337
Base. getindex (wp_set:: WorkPrecisionSet ,:: Colon ) = wp_set. wps
338
338
339
- function print (io:: IO , wp_set:: WorkPrecisionSet )
339
+ function Base . print (io:: IO , wp_set:: WorkPrecisionSet )
340
340
println (io," WorkPrecisionSet of $(wp_set. N) wps" )
341
341
println (io," Names: $(wp_set. names) " )
342
342
end
343
343
344
- function show (io:: IO , wp_set:: WorkPrecisionSet )
344
+ function Base . show (io:: IO , wp_set:: WorkPrecisionSet )
345
345
println (io," WorkPrecisionSet of $(wp_set. N) wps" )
346
346
end
0 commit comments