From f7bc3165384d6feb96280d60a0012133576594be Mon Sep 17 00:00:00 2001 From: relf Date: Mon, 13 Jan 2025 11:28:53 +0100 Subject: [PATCH] Fix mopta08 exe path --- crates/ego/examples/mopta08.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/ego/examples/mopta08.rs b/crates/ego/examples/mopta08.rs index 0346c36f..90b466bb 100644 --- a/crates/ego/examples/mopta08.rs +++ b/crates/ego/examples/mopta08.rs @@ -188,7 +188,7 @@ fn mopta(x: &ArrayView2, indices: Option<&[usize]>) -> Array2 { } 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) @@ -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)