Skip to content

Commit

Permalink
Change default calibration matrix method to standard
Browse files Browse the repository at this point in the history
  • Loading branch information
wederbn committed Jan 8, 2024
1 parent 41733f0 commit b4ba317
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default class QuantMEFactory extends BpmnFactory {
// setting default for selectlist
if (element.$type === READOUT_ERROR_MITIGATION_TASK) {
element.mitigationMethod = "matrixInversion";
element.calibrationMethod = "fullMatrix";
element.calibrationMethod = "standard";
}

if (element.$type === CIRCUIT_CUTTING_SUBPROCESS) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ export function CalibrationMethodEntry({ element }) {
};

const selectOptions = [
{ value: "fullMatrix", label: "Full Matrix" },
{ value: "standard", label: "Full Matrix" },
{ value: "tpnm", label: "TPNM" },
{ value: "ctmp", label: "CTMP" },
{ value: "ddot", label: "DDOT" },
Expand Down Expand Up @@ -592,7 +592,7 @@ export function MitigationMethodEntry({ element }) {
else if (isCM && !bo.calibrationMethod) {
return modeling.updateProperties(element, {
mitigationMethod: newValue,
calibrationMethod: "fullMatrix",
calibrationMethod: "standard",
});
}
return modeling.updateProperties(element, {
Expand Down

0 comments on commit b4ba317

Please sign in to comment.