OPENF4
Library for Gröebner basis computations over finite fields.
 All Classes Namespaces Files Functions Variables Friends Pages
tutorial-gf2-extension-method3.cpp
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2015 Antoine Joux, Vanessa Vitse and Titouan Coladon
3  *
4  * This file is part of openf4.
5  *
6  * openf4 is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * openf4 is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with openf4. If not, see <http://www.gnu.org/licenses/>.
18  */
19 
28 #include <iostream>
29 #include <openf4.h>
30 
31 using namespace F4;
32 using namespace std;
33 
34 // Global variable
35 int F4::VERBOSE=0;
36 #ifdef USE_OPENMP
37 int F4::NB_THREAD=omp_get_num_procs();
38 #else
39 int F4::NB_THREAD=1;
40 #endif
41 
42 int main (int argc, char **argv)
43 {
44  cout << "#########################################################" << endl;
45  cout << "# TUTORIAL WITH SOURCES USE #" << endl;
46  cout << "#########################################################" << endl << endl;
47 
48  // Initialize element-gf2-extension tools.
49  typedef ElementGF2Extension<uint64_t> eltType;
50  eltType::setVariableName("t");
51  string modulo= string("t^63 + t^61 + t^57 + t^56 + t^54 + t^51 + t^47 + t^46 + t^45 + t^44 + t^43 + t^42 + t^39 + t^38 + t^35 + t^34 + t^32 + t^31 + t^28 + t^25 + t^24 + t^23 + t^21 + t^19 + t^18 + t^17 + t^15 + t^13 + t^10 + t^8 + t^7 + t^5 + t^2 + t + 1");
52  eltType::setModulo(modulo);
53 
54  // Init monomial tools
56 
57  // Create variable name array
58  string * vars = new string[6];
59  for(int i = 0; i < 6; i++)
60  {
61  vars[i]='x'+to_string(i);
62  }
64 
65  // Create polynomial array
66  vector<Polynomial<eltType>> polynomialArray;
67 
68  // Fill the polynomial array
69  polynomialArray.emplace_back("(t+t^3)*x0+(t+t^3)*x1+(t+t^3)*x2+(t+t^3)*x3+(t+t^3)*x4+(t+t^3)*x5");
70  polynomialArray.emplace_back("(t+t^3)*x0*x1+(t+t^3)*x1*x2+(t+t^3)*x2*x3+(t+t^3)*x3*x4+(t+t^3)*x0*x5+(t+t^3)*x4*x5");
71  polynomialArray.emplace_back("(t+t^3)*x0*x1*x2+(t+t^3)*x1*x2*x3+(t+t^3)*x2*x3*x4+(t+t^3)*x0*x1*x5+(t+t^3)*x0*x4*x5+(t+t^3)*x3*x4*x5");
72  polynomialArray.emplace_back("(t+t^3)*x0*x1*x2*x3+(t+t^3)*x1*x2*x3*x4+(t+t^3)*x0*x1*x2*x5+(t+t^3)*x0*x1*x4*x5+(t+t^3)*x0*x3*x4*x5+(t+t^3)*x2*x3*x4*x5");
73  polynomialArray.emplace_back("(t+t^3)*x0*x1*x2*x3*x4+(t+t^3)*x0*x1*x2*x3*x5+(t+t^3)*x0*x1*x2*x4*x5+(t+t^3)*x0*x1*x3*x4*x5+(t+t^3)*x0*x2*x3*x4*x5+(t+t^3)*x1*x2*x3*x4*x5");
74  polynomialArray.emplace_back("(t+t^3)*x0*x1*x2*x3*x4*x5-1");
75 
76  // Create cyclic6 ideal.
77  Ideal<eltType> cyclic6(polynomialArray, 6);
78 
79  // Compute a reduced groebner basis.
80  int nbGen=cyclic6.f4();
81  cout << "The groebner basis has " << nbGen << " generators " << endl << endl;
82 
83  // Get the reduced groebner basis under string format.
84  vector<string> basis = cyclic6.getReducedGroebnerBasis();
85 
86  // Print the reduce groebner basis.
87  for(size_t i = 0; i < basis.size(); i++)
88  {
89  cout << basis[i] << endl;
90  }
91 
92  return 0;
93 }
Declaration of class F4 methods.
Represent an ideal.
Definition: ideal.h:67
static void initMonomial(int nbVariable, short degree=1)
Initialise the static parameters of Monomial.
Represent an element of an extension of GF2, this class is a POD (Plain Old Data) because of the alig...
static void setVariable(std::string const *vars)
Modify the static variable VARS.