chiark / gitweb /
use nprocessors to set -DNPROCESSORS
[moebius2.git] / common.c
index bc4dcaef8ec8e837337babe47a7635e5534d43bd..62b981efa930fd19bbb3eab3bb94dd0ba0d14d69 100644 (file)
--- a/common.c
+++ b/common.c
@@ -43,5 +43,23 @@ void xprod(double r[D3], const double a[D3], const double b[D3]) {
   r[2]= a[0]*b[1] - a[1]*b[0];
 }
 
+double dotprod(const double a[D3], const double b[D3]) {
+  int k;
+  double result= 0;
+  K result += a[k] * b[k];
+  return result;
+}
+
+void libdie(const char *lib, int l, const char *str) {
+  fprintf(stderr,"%s library call failed, line %d: %s\n", lib, l, str);
+}
+
+void gsldie(int l, const char *what, int status) {
+  fprintf(stderr,"gsl function failed, line %d: %s: %s\n",
+         l, what, gsl_strerror(status));
+  exit(-1);
+}
+
 void diee(const char *what) { perror(what); exit(16); }
+void fail(const char *emsg) { fputs(emsg,stderr); exit(12); }
 void flushoutput(void) { if (fflush(stdout)||ferror(stdout)) diee("stdout"); }