From d261a49213d00c4839cb76124387a99f76ca0571 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 8 Sep 2026 15:27:34 -0500 Subject: [PATCH] shite --- .gitignore | 1 + Core/ComponentType.cs | 5 +- Core/Core.csproj | 14 ++- Core/IEquationComponent.cs | 8 +- Core/Operations.cs | 91 +++++++++++++++++- Core/Registrate.cs | 2 +- Core/bin/Debug/Core.dll | Bin 0 -> 6144 bytes Core/bin/Debug/Core.pdb | Bin 0 -> 19968 bytes ...amework,Version=v4.0.AssemblyAttributes.cs | 4 + ...amework,Version=v4.8.AssemblyAttributes.cs | 4 + .../Debug/Core.csproj.AssemblyReference.cache | Bin 0 -> 3709 bytes .../Debug/Core.csproj.CoreCompileInputs.cache | 1 + .../Debug/Core.csproj.FileListAbsolute.txt | 6 ++ Core/obj/Debug/Core.dll | Bin 0 -> 6144 bytes Core/obj/Debug/Core.pdb | Bin 0 -> 19968 bytes ...gnTimeResolveAssemblyReferencesInput.cache | Bin 5729 -> 1571 bytes MathApp.sln | 15 ++- MathLib/{MathApp.csproj => MathLib.csproj} | 18 +++- ...athApp.csproj.user => MathLib.csproj.user} | 0 MathLib/Program.cs | 14 +++ MathLib/app.config | 3 + MathLib/bin/Debug/Core.dll | Bin 0 -> 6144 bytes MathLib/bin/Debug/Core.pdb | Bin 0 -> 19968 bytes MathLib/bin/Debug/MathLib.exe | Bin 0 -> 5120 bytes MathLib/bin/Debug/MathLib.exe.config | 3 + MathLib/bin/Debug/MathLib.pdb | Bin 0 -> 15872 bytes ...=v4.0,Profile=Client.AssemblyAttributes.cs | 4 + ...amework,Version=v4.8.AssemblyAttributes.cs | 4 + ...gnTimeResolveAssemblyReferencesInput.cache | Bin 5911 -> 1685 bytes .../MathLib.csproj.AssemblyReference.cache | Bin 0 -> 4167 bytes .../MathLib.csproj.CoreCompileInputs.cache | 1 + .../Debug/MathLib.csproj.FileListAbsolute.txt | 10 ++ MathLib/obj/x86/Debug/MathLib.csproj.Up2Date | 0 MathLib/obj/x86/Debug/MathLib.exe | Bin 0 -> 5120 bytes MathLib/obj/x86/Debug/MathLib.pdb | Bin 0 -> 15872 bytes 35 files changed, 189 insertions(+), 19 deletions(-) create mode 100644 .gitignore create mode 100644 Core/bin/Debug/Core.dll create mode 100644 Core/bin/Debug/Core.pdb create mode 100644 Core/obj/Debug/.NETFramework,Version=v4.0.AssemblyAttributes.cs create mode 100644 Core/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs create mode 100644 Core/obj/Debug/Core.csproj.AssemblyReference.cache create mode 100644 Core/obj/Debug/Core.csproj.CoreCompileInputs.cache create mode 100644 Core/obj/Debug/Core.csproj.FileListAbsolute.txt create mode 100644 Core/obj/Debug/Core.dll create mode 100644 Core/obj/Debug/Core.pdb rename MathLib/{MathApp.csproj => MathLib.csproj} (79%) rename MathLib/{MathApp.csproj.user => MathLib.csproj.user} (100%) create mode 100644 MathLib/app.config create mode 100644 MathLib/bin/Debug/Core.dll create mode 100644 MathLib/bin/Debug/Core.pdb create mode 100644 MathLib/bin/Debug/MathLib.exe create mode 100644 MathLib/bin/Debug/MathLib.exe.config create mode 100644 MathLib/bin/Debug/MathLib.pdb create mode 100644 MathLib/obj/x86/Debug/.NETFramework,Version=v4.0,Profile=Client.AssemblyAttributes.cs create mode 100644 MathLib/obj/x86/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs create mode 100644 MathLib/obj/x86/Debug/MathLib.csproj.AssemblyReference.cache create mode 100644 MathLib/obj/x86/Debug/MathLib.csproj.CoreCompileInputs.cache create mode 100644 MathLib/obj/x86/Debug/MathLib.csproj.FileListAbsolute.txt create mode 100644 MathLib/obj/x86/Debug/MathLib.csproj.Up2Date create mode 100644 MathLib/obj/x86/Debug/MathLib.exe create mode 100644 MathLib/obj/x86/Debug/MathLib.pdb diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a4d6d9c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.vs/ \ No newline at end of file diff --git a/Core/ComponentType.cs b/Core/ComponentType.cs index 1dce235..ed1cfb0 100644 --- a/Core/ComponentType.cs +++ b/Core/ComponentType.cs @@ -5,11 +5,12 @@ using System.Text; namespace Core { - enum ComponentType + public enum ComponentType { EQ_ADD, EQ_SUB, EQ_DIV, - EQ_MUL + EQ_MUL, + QZ_VAR } } diff --git a/Core/Core.csproj b/Core/Core.csproj index da17790..70dcc65 100644 --- a/Core/Core.csproj +++ b/Core/Core.csproj @@ -1,17 +1,18 @@  - + Debug AnyCPU 8.0.30703 2.0 - b198255b-c87f-4484-9511-56c8143cad52 + {B198255B-C87F-4484-9511-56C8143CAD52} Library Properties Core Core - v4.0 + v4.8 512 + true @@ -21,6 +22,7 @@ DEBUG;TRACE prompt 4 + false pdbonly @@ -29,6 +31,7 @@ TRACE prompt 4 + false @@ -40,8 +43,11 @@ - + + + +