• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Community
    • Proof-automation
    • ACL2
    • Macro-libraries
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
      • Sv
      • Fgl
      • Vwsim
      • Vl
        • Syntax
        • 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->plusargs
              • Vl-loadconfig->flush-tries
              • Vl-loadconfig->strictp
              • Vl-loadconfig->mintime
              • Vl-loadconfig->filemapp
              • Vl-loadconfig->edition
              • Vl-loadconfig->defines
              • Vl-loadconfig->debugp
            • Vl-loadstate
            • Lexer
            • Parser
            • Vl-load-merge-descriptions
            • Vl-find-basename/extension
            • Vl-load-file
            • Vl-loadresult
            • Scope-of-defines
            • Vl-find-file
            • Vl-flush-out-descriptions
            • Vl-description
            • Vl-read-file
            • Vl-includeskips-report-gather
            • Vl-load-main
            • Extended-characters
            • Vl-load
            • Vl-load-description
            • Vl-descriptions-left-to-load
            • Inject-warnings
            • Vl-preprocess-debug
            • Vl-write-preprocessor-debug-file
            • Vl-read-file-report-gather
            • Vl-load-descriptions
            • Vl-load-files
            • Translate-off
            • Vl-load-read-file-hook
            • Vl-read-file-report
            • Vl-loadstate-pad
            • Vl-load-summary
            • Vl-collect-modules-from-descriptions
            • Vl-loadstate->warnings
            • Vl-iskips-report
            • Vl-descriptionlist
          • Warnings
          • Getting-started
          • Utilities
          • Printer
          • Kit
          • Mlib
          • Transforms
        • 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)