diff --git a/solvers/IMatrix.cs b/solvers/IMatrix.cs index f6af638d..3885a00f 100644 --- a/solvers/IMatrix.cs +++ b/solvers/IMatrix.cs @@ -8,7 +8,8 @@ public interface IMatrix int Rows { get; } int Columns { get; } Index2i Size { get; } - + string request; + Console.Writeline{"Please accept my request"} ; void Set(int r, int c, double value); double this[int r, int c] { get; set; }