Searched defs:threshold_axis (Results 1 – 1 of 1) sorted by relevance
22 struct threshold_axis { in main() struct23 threshold_axis(double x) : thr(x) {} in main() argument24 axis::index_type index(double x) const { return x >= thr; } in main()25 axis::index_type size() const { return 2; } in main()26 double thr; in main()