Home
last modified time | relevance | path

Searched defs:threshold_axis (Results 1 – 1 of 1) sorted by relevance

/third_party/boost/libs/histogram/examples/
Dguide_custom_minimal_axis.cpp22 struct threshold_axis { in main() struct
23 threshold_axis(double x) : thr(x) {} in main() argument
24 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()