All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gapt.formats.tip.util.TipNameGenerator.scala Maven / Gradle / Ivy

The newest version!
package gapt.formats.tip.util

import gapt.utils.NameGenerator

class TipNameGenerator(initiallyUsed: Iterable[String])
    extends NameGenerator(
      initiallyUsed ++ List(
        "case",
        "match",
        "ite",
        "and",
        "or",
        "forall",
        "exists",
        "=>",
        "=",
        "declare-sort",
        "declare-const",
        "declare-fun",
        "declare-datatypes",
        "define-fun",
        "define-fun-rec",
        "define-funs-rec",
        "prove",
        "par",
        "assert",
        "not",
        "true",
        "false"
      )
    ) {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy