Skip to content

Commit

Permalink
Fix mopta08 exe path
Browse files Browse the repository at this point in the history
  • Loading branch information
relf committed Jan 13, 2025
1 parent dabb00b commit f7bc316
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/ego/examples/mopta08.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ fn mopta(x: &ArrayView2<f64>, indices: Option<&[usize]>) -> Array2<f64> {
} else {
"mopta08_elf64.bin"
};
path_exe.push(r"ego/examples");
path_exe.push(r"crates/ego/examples");
path_exe.push(mopta_exe);

let _ = Command::new(path_exe)
Expand Down Expand Up @@ -270,7 +270,6 @@ fn main() -> anyhow::Result<()> {
.n_clusters(1)
.n_start(50)
.n_doe(n_doe)
.n_optmod(3)
.max_iters(max_iters)
.regression_spec(RegressionSpec::CONSTANT)
.correlation_spec(CorrelationSpec::SQUAREDEXPONENTIAL)
Expand Down

0 comments on commit f7bc316

Please sign in to comment.