aboutsummaryrefslogtreecommitdiff
path: root/src/Startup.c
blob: a7d3c22a3672d36980ca1a85d476117d89a05f57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "cctk.h"
#include "cctk_parameters.h"

int EllSOR_Register(cGH *GH) {
  void sor_confmetric(cGH *GH, int *MetricPsiI, int *FieldI, int *MI,
                      int *NI, int *TolArray);

  printf("SOR: registering sor...");
  Ell_RegisterSolver(sor_confmetric,"sor","Ell_LinConfMetric");
  printf("...done\n");
}