summaryrefslogtreecommitdiffstats
path: root/hwpfilter/source/solver.h
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-04-09 08:45:51 +0200
committerNoel Grandin <noel@peralex.com>2015-04-13 09:37:12 +0200
commit26ec80f47df1b32c5e1ae8c96d597ef8c90fee86 (patch)
tree11b53e701f50ff170552054ef7d23136cd4710b6 /hwpfilter/source/solver.h
parentconvert SHOWEXTRAS constants to scoped enum (diff)
downloadcore-26ec80f47df1b32c5e1ae8c96d597ef8c90fee86.tar.gz
core-26ec80f47df1b32c5e1ae8c96d597ef8c90fee86.zip
loplugin:staticmethods
Change-Id: I33a8ca28b0c3bf1c31758d93238e74927bebde9c
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]