From d650e026f18abe5b03c83c99fd4dca5b6025c117 Mon Sep 17 00:00:00 2001 From: Marie Salm Date: Thu, 11 Jul 2024 14:26:06 +0200 Subject: [PATCH] fix parameters --- .../algorithms/nisq-analyzer/nisq-analyzer.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/components/algorithms/nisq-analyzer/nisq-analyzer.component.ts b/src/app/components/algorithms/nisq-analyzer/nisq-analyzer.component.ts index 12817688..0e4283bc 100644 --- a/src/app/components/algorithms/nisq-analyzer/nisq-analyzer.component.ts +++ b/src/app/components/algorithms/nisq-analyzer/nisq-analyzer.component.ts @@ -254,8 +254,8 @@ export class NisqAnalyzerComponent implements OnInit { dialogResult.maxNumberOfCompiledCircuits, predictionAlgorithm: dialogResult.predictionAlgorithm, metaOptimizer: dialogResult.metaOptimizer, - mcdaMethodName: dialogResult.mcdaMethodName, - mcdaWeightLearningMethod: dialogResult.mcdaWeightLearningMethod, + mcdaMethodName: dialogResult.mcdaMethod, + mcdaWeightLearningMethod: dialogResult.weightLearningMethod, }) .subscribe((job) => { this.analyzerJob = job;