Skip to content

Commit d9fc20c

Browse files
committed
Merge remote-tracking branch 'origin/init-point-fix'
2 parents 4376d94 + 8598910 commit d9fc20c

25 files changed

+109
-71
lines changed

example-files/alpha_pinene_ess_mpi2_config.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@
5858
<ub>
5959
1, 1, 1, 1, 1
6060
</ub>
61-
<initial_point>
61+
<point>
6262
1, 1, 1, 1, 1
63-
</initial_point>
63+
</point>
6464
</problem>
6565

6666
</xml>

example-files/alpha_pinene_ess_serial_config.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@
5858
<ub>
5959
1, 1, 1, 1, 1
6060
</ub>
61-
<initial_point>
61+
<point>
6262
1, 1, 1, 1, 1
63-
</initial_point>
63+
</point>
6464
</problem>
6565

6666
</xml>

example-files/logistic_model_ess_mpi2_config.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@
5858
<ub>
5959
1, 200
6060
</ub>
61-
<initial_point>
61+
<point>
6262
1, 150
63-
</initial_point>
63+
</point>
6464
</problem>
6565

6666
</xml>

example-files/logistic_model_ess_mpi_config.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@
5858
<ub>
5959
1, 200
6060
</ub>
61-
<initial_point>
61+
<point>
6262
1, 150
63-
</initial_point>
63+
</point>
6464
</problem>
6565

6666
</xml>

example-files/logistic_model_ess_serial_config.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@
5858
<ub>
5959
1, 200
6060
</ub>
61-
<initial_point>
61+
<point>
6262
1, 150
63-
</initial_point>
63+
</point>
6464
</problem>
6565

6666
</xml>

example-files/lotka_volterra_ess_mpi2_config.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@
5858
<ub>
5959
1.000, 1.000, 1.000, 1.000
6060
</ub>
61-
<initial_point>
61+
<point>
6262
0.3, 0.3, 0.3, 0.3
63-
</initial_point>
63+
</point>
6464
</problem>
6565

6666
</xml>

example-files/lotka_volterra_ess_mpi_config.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<verbose>0</verbose>
88
<local_search>1</local_search>
99
<stopping_criteria>
10-
<maxevaluation>6e3</maxevaluation>
10+
<maxevaluation>3e3</maxevaluation>
1111
<maxtime>1e10</maxtime>
1212
<vtr>0</vtr>
1313
</stopping_criteria>
@@ -58,9 +58,9 @@
5858
<ub>
5959
1.000, 1.000, 1.000, 1.000
6060
</ub>
61-
<initial_point>
61+
<point>
6262
0.3, 0.3, 0.3, 0.3
63-
</initial_point>
63+
</point>
6464
</problem>
6565

6666
</xml>

example-files/lotka_volterra_ess_serial_config.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<verbose>0</verbose>
88
<local_search>1</local_search>
99
<stopping_criteria>
10-
<maxevaluation>6e3</maxevaluation>
10+
<maxevaluation>2e3</maxevaluation>
1111
<maxtime>1e10</maxtime>
1212
<vtr>0</vtr>
1313
</stopping_criteria>
@@ -58,9 +58,9 @@
5858
<ub>
5959
1.000, 1.000, 1.000, 1.000
6060
</ub>
61-
<initial_point>
61+
<point>
6262
0.3, 0.3, 0.3, 0.3
63-
</initial_point>
63+
</point>
6464
</problem>
6565

6666
</xml>

modules/cli/src/handlers/solve.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ int handle_solve(int argc, char *argv[])
111111
int nproc = 1;
112112
#endif
113113

114-
CuqdynResult *cuqdyn_result = cuqdyn_algo(data_file, sacess_config_file, output_dir, rank, nproc);
114+
CuqdynResult *cuqdyn_result = cuqdyn_algo(data_file, sacess_config_file, output_dir);
115115

116116
if (rank == 0)
117117
{

modules/cuqdyn-c/include/cuqdyn.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ typedef struct
2323
CuqdynResult* create_cuqdyn_result(SUNMatrix predicted_data_median, N_Vector predicted_params_median,
2424
SUNMatrix q_low, SUNMatrix q_up, N_Vector times);
2525
void destroy_cuqdyn_result(CuqdynResult* result);
26-
CuqdynResult *cuqdyn_algo(const char *data_file, const char *sacess_conf_file, const char *output_file, int rank, int nproc);
26+
CuqdynResult *cuqdyn_algo(const char *data_file, const char *sacess_conf_file, const char *output_file);
2727

2828
typedef struct
2929
{

0 commit comments

Comments
 (0)