Commented out QField to get rid of the artifical dependence on GMP dev
authorDmitriy Morozov <dmitriy@mrzv.org>
Fri, 05 Feb 2010 11:07:42 -0800
branchdev
changeset 197 29fbad86aff6
parent 196 5303ce3f1934
child 198 e95766342e5f
Commented out QField to get rid of the artifical dependence on GMP
include/topology/field-arithmetic.h
--- a/include/topology/field-arithmetic.h	Thu Feb 04 23:43:36 2010 -0800
+++ b/include/topology/field-arithmetic.h	Fri Feb 05 11:07:42 2010 -0800
@@ -2,7 +2,6 @@
 #define __FIELD_ARITHMETIC_H__
 
 #include <vector>
-#include <gmpxx.h>
 
 class ZpField
 {
@@ -42,6 +41,9 @@
             }
 }
 
+#if 0                   // unused example; commented out to get rid of the artificial dependence on GMP
+#include <gmpxx.h>
+
 class QField
 {
     public:
@@ -61,5 +63,6 @@
 
         bool        is_zero(Element a) const                        { return a == 0; }
 };
+#endif
  
 #endif // __FIELD_ARITHMETIC_H__