summaryrefslogtreecommitdiff
path: root/hwpfilter/source/solver.h
diff options
context:
space:
mode:
Diffstat (limited to 'hwpfilter/source/solver.h')
-rw-r--r--hwpfilter/source/solver.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/hwpfilter/source/solver.h b/hwpfilter/source/solver.h
index 0b1fffd5301e..8aba94a1125b 100644
--- a/hwpfilter/source/solver.h
+++ b/hwpfilter/source/solver.h
@@ -25,11 +25,11 @@ class mgcLinearSystemD
public:
mgcLinearSystemD() {;}
- double** NewMatrix (int N);
- void DeleteMatrix (int N, double** A);
- double* NewVector (int N);
+ static double** NewMatrix (int N);
+ static void DeleteMatrix (int N, double** A);
+ static double* NewVector (int N);
- int Solve (int N, double** A, double* b);
+ static int Solve (int N, double** A, double* b);
// Input:
// A[N][N] coefficient matrix, entries are A[row][col]
// b[N] vector, entries are b[row]