From 21047255c6c0772eff83c29be643ef0572254a7f Mon Sep 17 00:00:00 2001 From: Aaron Councilman <aaronjc4@illinois.edu> Date: Thu, 20 Feb 2025 22:33:40 -0600 Subject: [PATCH] Fix merge --- hercules_opt/src/editor.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hercules_opt/src/editor.rs b/hercules_opt/src/editor.rs index bd449ce3..9cf5af72 100644 --- a/hercules_opt/src/editor.rs +++ b/hercules_opt/src/editor.rs @@ -820,6 +820,9 @@ impl<'a, 'b> FunctionEdit<'a, 'b> { Type::Product(_) | Type::Summation(_) | Type::Array(_, _) => { panic!("PANIC: Can't create largest constant of a collection type.") } + Type::MultiReturn(_) => { + panic!("PANIC: Can't create largest constant for multi-return types.") + } }; self.add_constant(constant_to_construct) } @@ -843,6 +846,9 @@ impl<'a, 'b> FunctionEdit<'a, 'b> { Type::Product(_) | Type::Summation(_) | Type::Array(_, _) => { panic!("PANIC: Can't create smallest constant of a collection type.") } + Type::MultiReturn(_) => { + panic!("PANIC: Can't create smallest constant for multi-return types.") + } }; self.add_constant(constant_to_construct) } -- GitLab