6 #include <gsl/gsl_errno.h>
7 #include <gsl/gsl_sf.h>
8 #include <gsl/gsl_siman.h>
9 #include <gsl/gsl_randist.h>
14 #define J_END_COL(i) \
15 for (j=0; j<N; j++) gsl_matrix_set(J,i,j,J_COL[j]);
17 static inline _Bool IS_SMALL(double v) {
21 static inline double sinc(double x) {
22 return gsl_sf_sinc(x / M_PI);
25 static double target[N];
27 static double cb_Efunc(void *xp) {
33 for (i=0, e=0; i<N; i++) {
34 double d = F[i] - target[i];
40 static void cb_step(const gsl_rng *rng, void *xp, double step_size) {
44 gsl_ran_dir_nd(rng, N,step);
46 x[i] += step_size * step[i];
49 static double cb_metric(void *xp, void *yp) {
50 const double *x=xp, *y=yp;
53 for (i=0, s=0; i<N; i++) {
54 double d = x[i] - y[i];
60 static void printcore(const double *x) {
66 for (i=0; i<6; i++) printf(" %.18g,", x[i]);
67 for (i=0; i<6; i++) printf(" %.18g,", F[i]);
71 static void __attribute__((unused)) cb_print(void *xp) {
77 static double scan1double(void) {
82 if (ferror(stdin)) { perror("stdin"); exit(-1); }
83 if (feof(stdin)) exit(0);
84 if (r!=1) { fputs("bad input\n",stderr); exit(-1); }
94 gsl_rng *rng = gsl_rng_alloc(gsl_rng_ranlxd2);
97 /* 2N+1 doubles: target, initial guess, epsilon for residual */
99 target[i] = scan1double();
101 startpoint[i] = scan1double();
102 epsilon = scan1double();
106 gsl_siman_params_t siman_params = {
110 .t_min = epsilon * 1E-3,
115 cb_Efunc, cb_step, cb_metric,
117 0,0,0, sizeof(startpoint), siman_params);
119 printcore(startpoint);