From ae107b635f51666156770f0264d65af534c4de07 Mon Sep 17 00:00:00 2001 From: Bugra Onal Date: Wed, 10 Aug 2022 09:37:02 -0700 Subject: [PATCH] Enable datasheet generation by default --- compiler/options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/options.py b/compiler/options.py index d80b302f..4e589e1e 100644 --- a/compiler/options.py +++ b/compiler/options.py @@ -115,7 +115,7 @@ class options(optparse.Values): # Output config with all options output_extended_config = False # Output temporary file used to format HTML page - output_datasheet_info = False + output_datasheet_info = True # Determines which analytical model to use. # Available Models: elmore, linear_regression model_name = "elmore"