codac 2.0.0
Loading...
Searching...
No Matches
codac2_qinter.h
Go to the documentation of this file.
1
9
10#pragma once
11
12#include <list>
14
15namespace codac2
16{
17 // Approximate Q-intersection, using Luc Jaulin's algorithm
18 // Author: Clement Carbonnel, Benoit Desrochers, Simon Rohou
19 // The q-intersection of n boxes corresponds to the set of all elements
20 // which belong to at least q of these boxes.
21 IntervalVector qinter(unsigned int q, const std::list<IntervalVector>& l);
22}
Definition codac2_OctaSym.h:21
Eigen::Matrix< Interval,-1, 1 > IntervalVector
Alias for a dynamic-size column vector of intervals.
Definition codac2_IntervalVector.h:25