]> CRI, Mines Paris - PSL - linpy.git/blobdiff - pypol/geometry.py
Rename pypol into LinPy
[linpy.git] / pypol / geometry.py
diff --git a/pypol/geometry.py b/pypol/geometry.py
deleted file mode 100644 (file)
index d0146cf..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-from abc import ABC, abstractmethod, abstractproperty
-
-
-__all__ = [
-    'GeometricObject',
-]
-
-
-class GeometricObject(ABC):
-
-    @abstractproperty
-    def symbols(self):
-        pass
-
-    @property
-    def dimension(self):
-        return len(self.symbols)
-
-    @abstractmethod
-    def aspolyhedron(self):
-        pass
-
-    def asdomain(self):
-        return self.aspolyhedron()