Skip to content

Commit f7bc316

Browse files
committed
Fix mopta08 exe path
1 parent dabb00b commit f7bc316

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

crates/ego/examples/mopta08.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ fn mopta(x: &ArrayView2<f64>, indices: Option<&[usize]>) -> Array2<f64> {
188188
} else {
189189
"mopta08_elf64.bin"
190190
};
191-
path_exe.push(r"ego/examples");
191+
path_exe.push(r"crates/ego/examples");
192192
path_exe.push(mopta_exe);
193193

194194
let _ = Command::new(path_exe)
@@ -270,7 +270,6 @@ fn main() -> anyhow::Result<()> {
270270
.n_clusters(1)
271271
.n_start(50)
272272
.n_doe(n_doe)
273-
.n_optmod(3)
274273
.max_iters(max_iters)
275274
.regression_spec(RegressionSpec::CONSTANT)
276275
.correlation_spec(CorrelationSpec::SQUAREDEXPONENTIAL)

0 commit comments

Comments
 (0)