summaryrefslogtreecommitdiff
path: root/master_thesis/elio_procedures.py
diff options
context:
space:
mode:
Diffstat (limited to 'master_thesis/elio_procedures.py')
-rw-r--r--master_thesis/elio_procedures.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/master_thesis/elio_procedures.py b/master_thesis/elio_procedures.py
deleted file mode 100644
index cd4848e..0000000
--- a/master_thesis/elio_procedures.py
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/env python3
-
-
-class Procedure:
- pass
-
-
-class Variable:
- def __init__(self, name: str, subscript: int = 0):
- self.name = name
- self.subscript = subscript
-
-
- def __str__(self):
- return f"{self.name}_{self.subscript}"
-
- def get_result(self, Variables: dict):
- if not self.subscript:
- return Variables[self.name]
- else:
- return Variables
-
-x = Variable("solid", 2)
-print(x)