| 219 | std::recursive_mutex _depth_queue_mutex; |
| 220 | |
| 221 | struct ColumnCompare |
| 222 | { |
| 223 | bool operator()(const std::vector<double>& lhs, |
| 224 | const std::vector<double>& rhs) const |
| 225 | { |
| 226 | return lhs[2] > rhs[2]; |
| 227 | //return lhs[0] > rhs[0]; |
| 228 | } |
| 229 | }; |
| 230 | |
| 231 | Global global; |
| 232 | std::vector<NetCopy> net_copies; |
no outgoing calls
no test coverage detected