• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Community
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
        • Warnings
        • Primitives
        • Use-set
        • Syntax
        • Getting-started
        • Utilities
        • Loader
          • Preprocessor
          • Vl-loadconfig
            • Vl-loadconfig-p
            • Vl-loadconfig-fix
            • Make-vl-loadconfig
            • Vl-loadconfig-clean
              • Vl-clean-search-extensions-aux
              • Vl-clean-search-extension
              • Vl-clean-search-extensions
              • Vl-loadconfig-equiv
              • Change-vl-loadconfig
              • Vl-loadconfig->include-dirs
              • Vl-loadconfig->start-names
              • Vl-loadconfig->start-files
              • Vl-loadconfig->search-path
              • Vl-loadconfig->search-exts
              • Vl-loadconfig->flush-tries
              • Vl-loadconfig->strictp
              • Vl-loadconfig->mintime
              • Vl-loadconfig->filemapp
              • Vl-loadconfig->edition
              • Vl-loadconfig->defines
            • Lexer
            • Vl-loadstate
            • Parser
            • Vl-load-merge-descriptions
            • Scope-of-defines
            • Vl-load-file
            • Vl-flush-out-descriptions
            • Vl-description
            • Vl-loadresult
            • Vl-read-file
            • Vl-find-basename/extension
            • Vl-find-file
            • Vl-read-files
            • Extended-characters
            • Vl-load
            • Vl-load-main
            • Vl-load-description
            • Vl-descriptions-left-to-load
            • Inject-warnings
            • Vl-load-descriptions
            • Vl-load-files
            • Vl-load-summary
            • Vl-collect-modules-from-descriptions
            • Vl-descriptionlist
          • Transforms
          • Lint
          • Mlib
          • Server
          • Kit
          • Printer
          • Esim-vl
          • Well-formedness
        • Sv
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Vl-loadconfig-clean

    Vl-clean-search-extensions

    Signature
    (vl-clean-search-extensions search-exts) → search-exts
    Arguments
    search-exts — Guard (string-listp search-exts).
    Returns
    search-exts — Type (string-listp search-exts).

    Definitions and Theorems

    Function: vl-clean-search-extensions

    (defun vl-clean-search-extensions (search-exts)
     (declare (xargs :guard (string-listp search-exts)))
     (let ((__function__ 'vl-clean-search-extensions))
      (declare (ignorable __function__))
      (remove-duplicates-equal
          (remove-equal ""
                        (vl-clean-search-extensions-aux search-exts)))))

    Theorem: string-listp-of-vl-clean-search-extensions

    (defthm string-listp-of-vl-clean-search-extensions
      (b* ((search-exts (vl-clean-search-extensions search-exts)))
        (string-listp search-exts))
      :rule-classes :rewrite)