*/
-UniformStressSmoother UniformStressSmoother_new(SparseMatrix A, double alpha, double M){
+static UniformStressSmoother UniformStressSmoother_new(SparseMatrix A,
+ double alpha, double M) {
UniformStressSmoother sm;
int i, j, k, m = A->m, *ia = A->ia, *ja = A->ja, *iw, *jw, *id, *jd;
int nz;
void UniformStressSmoother_delete(UniformStressSmoother sm);
-UniformStressSmoother UniformStressSmoother_new(SparseMatrix A, double alpha, double M);
-
void uniform_stress(int dim, SparseMatrix A, double *x, int *flag);