final touchés
authorAlma Dejus <almde515@student.liu.se>
Sat, 28 Oct 2023 14:35:12 +0000 (16:35 +0200)
committerAlma Dejus <almde515@student.liu.se>
Sat, 28 Oct 2023 14:35:12 +0000 (16:35 +0200)
notes.md
src/expression.h
src/operators.h

index 7eb1931daf2a666010e830159589728f4ebf1e65..f72f604abe4f62fd55e7022e3ba5f68886130d0f 100644 (file)
--- a/notes.md
+++ b/notes.md
 
 
 # Uppgift 2
-
-Diagram finns. https://app.smartdraw.com/editor.aspx?credID=-54147836&depoId=50100329&flags=128#depoId=50103329&credID=-54147836, forssennils2@gmail.com
-fråga om resultatnod /lövnoder/lövklasser. Behövs alla 9?
-
-
-
-class Equation {
-    string result_var 
-    expression (operator eller operand nod)
-
-    calculate() -> expression.get_value()
-    store_result -> skapar en operand_nod i programminne som heter "area" med givet värde
-}
-
-struct/class variabel {
-    string namn;
-    operand-nod värde;
-}
-
-sin(4)
+Diagram finns i repot. 
\ No newline at end of file
index 4505b7a0a2e7a9a1d650757b5e1c2698e41f1bdd..5e813980eb9bd8c5e493d10afff99af2012017af 100644 (file)
@@ -3,9 +3,10 @@
 
 #include <string>
 #include <sstream>
-#include <cctype>   //Behövs?
-#include <algorithm>    //Behövs?
+#include <cctype>
+#include <algorithm>
 #include <stdexcept>
+#include <memory>
 
 #include "postfix.h"
 #include "token.h"
index fb7f92913b9a326b7412ec79d878f6d56bd359cf..bfe5bb655501b4b1b5d041f60f178a9ef9c718ac 100644 (file)
@@ -5,7 +5,6 @@
 #include <sstream>
 #include <stdexcept>
 #include <cmath>
-#include <memory>
 
 #include "node.h"