• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • Abnf
      • Vwsim
      • Isar
      • Wp-gen
      • Dimacs-reader
      • Pfcs
      • Legacy-defrstobj
      • C
        • Syntax-for-tools
          • Formalized-subset
          • Mapping-to-language-definition
          • Input-files
          • Compilation-database
          • Printer
          • Output-files
          • Abstract-syntax-operations
            • Expr-priority
            • Expr-priority-<=
            • Combine-dirabsdeclor-into-dirabsdeclor
            • Declor/dirdeclor-rename
            • Check-decl-spec-list-all-typespec/stoclass
            • Binop-expected-priorities
            • Expr->priority
            • Transunit-at-path
            • Declor/dirdeclor->ident
            • Declor/dirdeclor-has-params-p
            • Check-expr-binary
            • Apply-post-inc/dec-ops
            • Check-spec/qual-list-all-typespec
            • Apply-pre-inc/dec-ops
            • Check-decl-spec-list-all-typespec
            • Expr-to-asg-expr-list
            • Check-expr-mul
            • Expr-unary/postfix/primary-p
            • Transunit-ensemble-paths
            • Check-struni-spec-no-members
            • Expr-postfix/primary-p
            • Dirabsdeclor-declor?-nil-p
            • Check-enum-spec-no-list
            • Expr-zerop
            • Expr-priority->=
            • Decl-spec-list-to-stor-spec-list
            • Spec/qual-list-to-type-spec-list
            • Expr-priority->
            • Expr-priority-<
            • Declor-spec-list-filter-out-linkage-specs
            • Decl-spec-list-to-type-spec-list
            • Ident-list-map-expr-ident
            • Binop->priority
            • Stringlit-list->prefix?-list
            • Declor-spec-list-make-static
            • Binop-strictp
              • Check-expr-iconst
              • Init-declor->ident
              • Check-expr-ident
              • Dirabsdeclor-to-dirdeclor
              • Dirabsdeclor-option-to-dirdeclor
              • Dirdeclor-has-params-p
              • Absdeclor-to-declor
              • Dirdeclor-rename
              • Declor-rename
              • Declor-has-params-p
              • Dirdeclor->ident
              • Declor->ident
            • Implementation-environments
            • Abstract-syntax
            • Concrete-syntax
            • Disambiguation
            • Validation
            • Gcc-builtins
            • Preprocessing
            • Parsing
          • Atc
          • Transformation-tools
          • Language
          • Representation
          • Insertion-sort
          • Pack
        • Proof-checker-array
        • Soft
        • Farray
        • Rp-rewriter
        • Instant-runoff-voting
        • Imp-language
        • Sidekick
        • Ethereum
        • Leftist-trees
        • Java
        • Riscv
        • Taspi
        • Bitcoin
        • Zcash
        • Des
        • X86isa
        • Sha-2
        • Yul
        • Proof-checker-itp13
        • Regex
        • ACL2-programming-language
        • Json
        • Jfkr
        • Equational
        • Cryptography
        • Axe
        • Poseidon
        • Where-do-i-place-my-book
        • Aleo
        • Bigmems
        • Builtins
        • Execloader
        • Solidity
        • Paco
        • Concurrent-programs
        • Bls12-377-curves
      • Debugging
      • Community
      • Std
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Abstract-syntax-operations

    Binop-strictp

    Check if a binary operator is strict.

    Signature
    (binop-strictp op) → yes/no
    Arguments
    op — Guard (binopp op).
    Returns
    yes/no — Type (booleanp yes/no).

    These are all the binary operators except logical conjunction and disjunction.

    Definitions and Theorems

    Function: binop-strictp

    (defun binop-strictp (op)
      (declare (xargs :guard (binopp op)))
      (and (member-eq (binop-kind op)
                      (list :mul
                            :div :rem
                            :add :sub
                            :shl :shr
                            :lt :gt
                            :le :ge
                            :eq :ne
                            :bitand :bitxor
                            :bitior :asg
                            :asg-mul :asg-div
                            :asg-rem :asg-add
                            :asg-sub :asg-shl
                            :asg-shr :asg-and
                            :asg-xor :asg-ior))
           t))

    Theorem: booleanp-of-binop-strictp

    (defthm booleanp-of-binop-strictp
      (b* ((yes/no (binop-strictp op)))
        (booleanp yes/no))
      :rule-classes :rewrite)

    Theorem: binop-strictp-of-binop-fix-op

    (defthm binop-strictp-of-binop-fix-op
      (equal (binop-strictp (binop-fix op))
             (binop-strictp op)))

    Theorem: binop-strictp-binop-equiv-congruence-on-op

    (defthm binop-strictp-binop-equiv-congruence-on-op
      (implies (binop-equiv op op-equiv)
               (equal (binop-strictp op)
                      (binop-strictp op-equiv)))
      :rule-classes :congruence)