• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Community
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
    • Software-verification
      • Kestrel-books
        • Crypto-hdwallet
        • Apt
        • Error-checking
        • Fty-extensions
        • Isar
        • Kestrel-utilities
        • Set
        • 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
                • Initdeclor->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
          • Soft
          • Bv
          • Imp-language
          • Ethereum
          • Event-macros
          • Java
          • Riscv
          • Bitcoin
          • Zcash
          • Yul
          • ACL2-programming-language
          • Prime-fields
          • Json
          • Syntheto
          • File-io-light
          • Cryptography
          • Number-theory
          • Axe
          • Lists-light
          • Builtins
          • Solidity
          • Helpers
          • Htclient
          • Typed-lists-light
          • Arithmetic-light
        • X86isa
        • Axe
        • Execloader
      • 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)