• Top
    • Documentation
    • Books
    • Boolean-reasoning
      • Ipasir
      • Aignet
        • Base-api
        • Aignet-construction
        • Representation
        • Aignet-copy-init
        • Aignet-simplify-with-tracking
        • Aignet-simplify-marked-with-tracking
        • Aignet-cnf
        • Aignet-simplify-marked
        • Aignet-complete-copy
        • Aignet-transforms
          • Aignet-output-ranges
          • Aignet-comb-transforms
            • Fraig
            • Parametrize
            • Observability-fix
            • Constprop
            • Apply-m-assumption-n-output-output-transform-default
            • Balance
            • Apply-n-output-comb-transform-default
            • Apply-comb-transform-default
            • Obs-constprop
            • Rewrite
            • Comb-transform
              • Fraig-config
              • Comb-transform-p
              • Comb-transform-fix
              • Rewrite-config
              • Obs-constprop-config
              • Observability-config
              • Constprop-config
              • Abc-comb-simp-config
              • M-assum-n-output-observability-config
              • Comb-transform-equiv
              • Snapshot-config
                • Snapshot-config-fix
                • Snapshot-config-equiv
                • Make-snapshot-config
                  • Snapshot-config->filename
                  • Change-snapshot-config
                  • Snapshot-config-p
                • Prune-config
              • Abc-comb-simplify
              • Prune
              • Rewrite!
              • M-assumption-n-output-comb-transform->name
              • N-output-comb-transform->name
              • Comb-transform->name
              • N-output-comb-transformlist
              • M-assumption-n-output-comb-transformlist
              • Comb-transformlist
              • Apply-comb-transform
            • Aignet-m-assumption-n-output-transforms
            • Aignet-n-output-comb-transforms
          • Aignet-eval
          • Semantics
          • Aignet-read-aiger
          • Aignet-write-aiger
          • Aignet-abc-interface
          • Utilities
        • Aig
        • Satlink
        • Truth
        • Ubdds
        • Bdd
        • Faig
        • Bed
        • 4v
      • Projects
      • Debugging
      • Std
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Snapshot-config

    Make-snapshot-config

    Basic constructor macro for snapshot-config structures.

    Syntax
    (make-snapshot-config [:filename <filename>]) 
    

    This is the usual way to construct snapshot-config structures. It simply conses together a structure with the specified fields.

    This macro generates a new snapshot-config structure from scratch. See also change-snapshot-config, which can "change" an existing structure, instead.

    Definition

    This is an ordinary make- macro introduced by fty::defprod.

    Macro: make-snapshot-config

    (defmacro make-snapshot-config (&rest args)
      (std::make-aggregate 'snapshot-config
                           args '((:filename))
                           'make-snapshot-config
                           nil))

    Function: snapshot-config

    (defun snapshot-config (filename)
      (declare (xargs :guard (stringp filename)))
      (declare (xargs :guard t))
      (let ((__function__ 'snapshot-config))
        (declare (ignorable __function__))
        (b* ((filename (mbe :logic (acl2::str-fix filename)
                            :exec filename)))
          (cons :snapshot-config filename))))