mirror of
https://github.com/KLayout/klayout.git
synced 2026-09-02 02:47:48 +02:00
WIP: some refactoring, debugging output for netlist compare
Abstraction: a central getenv() feature to wrap all the system-specific things Netlist compare debug and options can be enabled through environment variables: KLAYOUT_NETLIST_COMPARE_DEBUG_NETCOMPARE=1: print netlist compare debug info KLAYOUT_NETLIST_COMPARE_DEBUG_NETGRAPH=1: print net grapg KLAYOUT_NETLIST_COMPARE_CASE_SENSITIVE=1: make netlist compare case sensitive
This commit is contained in:
@@ -35,6 +35,7 @@
|
||||
#include "tlTimer.h"
|
||||
#include "tlProgress.h"
|
||||
#include "tlThreadedWorkers.h"
|
||||
#include "tlEnv.h"
|
||||
#include "tlExceptions.h"
|
||||
#include "tlMath.h"
|
||||
#include "layCellView.h"
|
||||
@@ -1085,7 +1086,7 @@ XORToolDialog::run_xor ()
|
||||
|
||||
bool summarize = mp_ui->summarize_cb->isChecked ();
|
||||
// TODO: make this a user interface feature later
|
||||
bool process_el = lay::ApplicationBase::instance ()->special_app_flag ("ALWAYS_DO_XOR");
|
||||
bool process_el = tl::app_flag ("always-do-xor");
|
||||
|
||||
int cv_index_a = mp_ui->layouta->current_cv_index ();
|
||||
int cv_index_b = mp_ui->layoutb->current_cv_index ();
|
||||
|
||||
Reference in New Issue
Block a user