C# port of the BASIC second-order non-linear equation solver.
authorPat Thoyts <patthoyts@users.sourceforge.net>
Tue, 5 Aug 2014 14:03:19 +0000 (15:03 +0100)
committerPat Thoyts <patthoyts@users.sourceforge.net>
Tue, 5 Aug 2014 14:03:19 +0000 (15:03 +0100)
commitdf2a8d500089e77891ff76d3e4f8e5fc4fae5f22
tree984ab1f5addf291d809ac167ed3488afc4d9c70f
parent8d860ee1aaeb7bde8acb85bcaeb0256bf25aea03
C# port of the BASIC second-order non-linear equation solver.

Validated by running the original code on the VICE emulator. A unit test
compares the generated data against the emulator generated values.

Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
12 files changed:
.gitignore [new file with mode: 0644]
MervsSolver.sln [new file with mode: 0644]
MervsSolver/Coord.cs [new file with mode: 0644]
MervsSolver/MervsSolver.csproj [new file with mode: 0644]
MervsSolver/Program.cs [new file with mode: 0644]
MervsSolver/Properties/AssemblyInfo.cs [new file with mode: 0644]
MervsSolver/Solver.cs [new file with mode: 0644]
README.txt [new file with mode: 0644]
SolverTest/SolverTest.csproj [new file with mode: 0644]
SolverTest/Test.cs [new file with mode: 0644]
SolverTest/test.data [new file with mode: 0644]
solver2.bas [new file with mode: 0644]