mirror of https://github.com/CGAL/cgal
30 lines
533 B
C++
30 lines
533 B
C++
|
|
/*!
|
|
\ingroup PkgKernelDKernelConcept
|
|
\cgalConcept
|
|
|
|
*/
|
|
|
|
class Kernel_d::Linearly_independent_d {
|
|
public:
|
|
|
|
/// \name Operations
|
|
/// A model of this concept must provide:
|
|
/// @{
|
|
|
|
/*!
|
|
decides
|
|
whether the vectors in `A = tuple [first,last)` are linearly
|
|
independent.
|
|
|
|
\pre The objects in `A` are of the same dimension.
|
|
\tparam ForwardIterator has `Kernel_d::Vector_d` as value type.
|
|
*/
|
|
template <class ForwardIterator> bool
|
|
operator()(ForwardIterator first, ForwardIterator last);
|
|
|
|
/// @}
|
|
|
|
}; /* end Kernel_d::Linearly_independent_d */
|
|
|