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.
23 lines
502 B
23 lines
502 B
1 year ago
|
// Intersection when the determinantal equation has no multiple root
|
||
|
|
||
|
#ifndef _qi_no_mult_h_
|
||
|
#define _qi_no_mult_h_
|
||
|
|
||
|
/** QI */
|
||
|
#include <libqi/kernel/QIQsicStruct.h>
|
||
|
|
||
|
using namespace std;
|
||
|
using namespace rpl;
|
||
|
|
||
|
// Enter namespace QI
|
||
|
namespace QI {
|
||
|
|
||
|
quad_inter <bigint> inter_no_mult(const bigint_matrix &q1, const bigint_matrix &q2,
|
||
|
const hom_polynomial <bigint> &det_p,
|
||
|
const hom_polynomial <bigint> &det_p_orig,
|
||
|
const int opt_level, ostream &s);
|
||
|
|
||
|
} // end of namespace QI
|
||
|
|
||
|
#endif
|