You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
443 B
24 lines
443 B
// Main intersection loop
|
|
|
|
#ifndef _qi_inter_h_
|
|
#define _qi_inter_h_
|
|
|
|
/** rpl */
|
|
#include <libqi/rpl/bigint_matrix.h>
|
|
|
|
/** QI */
|
|
#include <libqi/kernel/QIQsicStruct.h>
|
|
|
|
using namespace std;
|
|
using namespace rpl;
|
|
|
|
// Enter namespace QI
|
|
namespace QI {
|
|
|
|
// The main intersection procedure
|
|
quad_inter <bigint> intersection(const bigint_matrix &q1, const bigint_matrix &q2,
|
|
const int opt_level, ostream &s);
|
|
|
|
} // end of namespace QI
|
|
|
|
#endif
|
|
|