From 50ab16938529458e84ccc25f29b52a9d929ca4c4 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Tue, 18 Feb 2025 23:41:20 +0100 Subject: [PATCH] Default for lazy eval mode is 'as requested by PCell' for backward compatibility --- src/edt/edt/edtPlugin.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/edt/edt/edtPlugin.cc b/src/edt/edt/edtPlugin.cc index 626e9ef08..422fa7b4a 100644 --- a/src/edt/edt/edtPlugin.cc +++ b/src/edt/edt/edtPlugin.cc @@ -142,6 +142,7 @@ void get_inst_options (std::vector < std::pair > &opti options.push_back (std::pair (cfg_edit_inst_column_y, "0.0")); options.push_back (std::pair (cfg_edit_inst_place_origin, "false")); options.push_back (std::pair (cfg_edit_pcell_show_parameter_names, "false")); + options.push_back (std::pair (cfg_edit_pcell_lazy_eval_mode, "-1")); options.push_back (std::pair (cfg_edit_max_shapes_of_instances, "1000")); options.push_back (std::pair (cfg_edit_show_shapes_of_instances, "true")); }