Skip to content

Commit 8d7e782

Browse files
author
David Eränen
committed
Removed EasyVis
Made some small warning fixes
1 parent b9c64fb commit 8d7e782

8 files changed

+2
-200
lines changed

EasyGeom.sln

-5
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@ VisualStudioVersion = 12.0.31101.0
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EasyGeom", "EasyGeom\EasyGeom.csproj", "{7E7016BF-6ACA-4CE6-ADC7-247C926D4E02}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EasyVis", "EasyVis\EasyVis.csproj", "{FE5B72A5-90B1-4FA0-92CB-154AC2905FC5}"
9-
ProjectSection(ProjectDependencies) = postProject
10-
{7E7016BF-6ACA-4CE6-ADC7-247C926D4E02} = {7E7016BF-6ACA-4CE6-ADC7-247C926D4E02}
11-
EndProjectSection
12-
EndProject
138
Global
149
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1510
Debug|Any CPU = Debug|Any CPU

EasyGeom/IndexMatrix.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public IndexMatrix( Matrix matrix )
2323
}
2424
}
2525

26-
public override double this[int i, int j]
26+
public double this[int i, int j]
2727
{
2828
get {
2929
return base[_rowIndices[i], _colIndices[j]];

EasyGeom/LinearSystem.cs

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
using System;
2-
using System.Collections;
3-
41
namespace EasyGeom
52
{
63
public class LinearSystem
@@ -32,7 +29,7 @@ void ToEchelonForm()
3229
int rowCount = _a.RowCount;
3330
int colCount = _a.ColCount;
3431

35-
IndexMatrix matrix = new IndexMatrix( _a );
32+
var matrix = new IndexMatrix( _a );
3633

3734
for( int i = 0, j = 0; i < rowCount && j < colCount; i++, j++ )
3835
{

EasyVis/App.config

-6
This file was deleted.

EasyVis/EasyVis.csproj

-72
This file was deleted.

EasyVis/Program.cs

-72
This file was deleted.

EasyVis/Properties/AssemblyInfo.cs

-36
This file was deleted.

EasyVis/packages.config

-4
This file was deleted.

0 commit comments

Comments
 (0)