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.
26 lines
647 B
26 lines
647 B
12 months ago
|
// Intersection when the determinantal equation has one multiple root
|
||
|
|
||
|
#ifndef _qi_one_mult_h_
|
||
|
#define _qi_one_mult_h_
|
||
|
|
||
|
/** QI */
|
||
|
#include <libqi/kernel/QIHompoly.h>
|
||
|
#include <libqi/kernel/QIQsicStruct.h>
|
||
|
|
||
|
using namespace std;
|
||
|
using namespace rpl;
|
||
|
|
||
|
// Enter namespace QI
|
||
|
namespace QI {
|
||
|
|
||
|
// The main procedure in the one multiple root case
|
||
|
quad_inter <bigint> inter_one_mult(const bigint_matrix &q1, const bigint_matrix &q2,
|
||
|
const hom_polynomial <bigint> &det_p,
|
||
|
const hom_polynomial <bigint> &det_p_orig,
|
||
|
const hom_polynomial <bigint> &gcd_p,
|
||
|
const int opt_level, std::ostream &s);
|
||
|
|
||
|
} // end of namespace QI
|
||
|
|
||
|
#endif
|