From a0422c9dcea3d62b40da6bb7c20dcaaf027b34d0 Mon Sep 17 00:00:00 2001 From: BenWeber42 Date: Thu, 2 May 2024 20:32:10 +0200 Subject: [PATCH] Changed default of serialize_all_fields to False (#1564) For the 0.16 release, we want to introduce the change to the default of `serialize_all_fields` to `False`. This reverts PR "Changed default of serialize_all_fields to True #1470". This reverts commit bfe4163f1297e049921c40e2a1bcb208fccc076b. --- dace/config_schema.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dace/config_schema.yml b/dace/config_schema.yml index 737862cacc..b26e96e920 100644 --- a/dace/config_schema.yml +++ b/dace/config_schema.yml @@ -945,10 +945,10 @@ required: serialize_all_fields: type: bool - default: true + default: false title: Serialize all unmodified fields in SDFG files description: > - If False, saving an SDFG keeps only the modified non-default properties. If True, + If False (default), saving an SDFG keeps only the modified non-default properties. If True, saves all fields. #############################################