CASMcode icon indicating copy to clipboard operation
CASMcode copied to clipboard

MC output conditions.$i folders

Open sjtuzhanglei opened this issue 1 year ago • 1 comments

The latest version of CASM deletes conditions.$i folders after finishing step i.

Is there a way to keep them?

I set the storage but it doesn't work as expected.

    "storage" : {
      "write_observations" : true,
      "write_trajectory" : true,
      "output_format" : ["csv", "json"]
    },

sjtuzhanglei avatar Jan 08 '24 23:01 sjtuzhanglei

I added the option "save_state_details" with default value false in the latest. The conditions directories should print if you set it to true:

    "storage" : {
      "write_observations" : true,
      "write_trajectory" : true,
      "save_state_details": true,
      "output_format" : ["csv", "json"]
    },

bpuchala avatar Jan 09 '24 16:01 bpuchala