Program listing for file kernel/src/utils/SiconosAlgebra/SiconosAlgebraTools.hpp#

 1#ifndef SICONOSALGEBRATOOLS_H
 2#define SICONOSALGEBRATOOLS_H
 3
 4class SiconosMatrix;
 5class BlockVector;
 6
 7namespace Siconos {
 8  namespace Algebra {
 9
10
11
12    bool isComparableTo(const BlockVector& v1, const BlockVector& v2);
13
14
15    bool isComparableTo(const SiconosMatrix& m1, const SiconosMatrix& m2);
16
17  }
18
19}
20
21#endif