Packages

  • package root
    Definition Classes
    root
  • package verifx

    Welcome to VeriFx's documentation.

    VeriFx: An Automated Verification Language

    Welcome to VeriFx's documentation. VeriFx is a functional OOP language, inspired by Scala, that supports fully automated verification of high-level correctness properties expressed in VeriFx itself. This document describes the API of VeriFx's functional collections and includes a brief tutorial.

    Object-Oriented Programming in VeriFx

    VeriFx supports classes, traits, and enumerations. The syntax for class definitions is equivalent to Scala:

    class MyClass[A](field1: Type1, field2: Type2) {
      def someMethod(): ReturnType = {
        val someNumber: Int = 5
        ...
      }
    }

    This defines a class with one type parameter A, two fields, and one method. Note that the fields are immutable. If some method needs to "change" one of the fields, you need to return a modified copy of the class.

    VeriFx has a type inferencer so you don't need to explicitly define the return type of methods. Within a class, this refers to the object itself. Hence, inside the body of the method you can access the fields as follows this.field1. In contrast to Scala, the use of this is obligatory (as in Java), i.e. if you refer to field1 directly the compiler will complain.

    Sometimes, you may want to write recursive methods. These need to be annotated with the @recursive annotation and always require a return type, e.g.:

    @recursive
    def fib(n: Int): Int = {
      if (n == 0 || n == 1)
        n
      else
        this.fib(n-1) + this.fib(n-2)
    }

    Classes are instantiated using the new keyword, e.g. new Foo(1, 2).

    Sometimes you want to share some code across several classes to avoid code duplication. To this end, VeriFx supports traits. Classes and traits can extend from traits (single-inheritance only!).

    trait Adder {
      def plus(x: Int, y: Int) = x+y
    }
    
    class Arithmetic extends Adder {
      def plusOne(x: Int) = this.plus(x, 1)
    }

    Traits can be polymorphic and a trait's type parameters can have upper type bounds:

    trait CRDTProof[T <: CRDT[T]] {
      ...
    }

    Finally, VeriFx also supports enumerations (aka algebraic data types):

    object Cmd {
      enum Cmd {
        Inc(x: Int) | Dec(x: Int) | Nop()
      }
    }

    Enumerations are defined using the enum keyword and should always be nested within an object. The Cmd enumeration defines 3 constructors Inc, Dec, and Nop. These constructors can define fields.

    Enumerations can be instantiated through one of their constructors. The resulting object is of type Cmd and can be deconstructed by pattern matching on it. For example:

    def apply(number: Int, cmd: Cmd) = cmd match {
      case Inc(a) => number + a
      case Dec(a) => number - a
      case Nop() => number
    }
    Built-in Collections

    VeriFx features a number of built-in functional collections: LList, Map, Set, Tuple, Vector. The complete API of these collections can be found in this documentation. Use the search bar to look up a data type or method.

    Verifying Correctness Properties

    VeriFx programs provide a special proof construct. A proof describes a correctness property about some VeriFx program and will be verified automatically. Proofs are defined using the proof keyword and expect a name and a body. The body must be a boolean expression such that its satisfiability can be checked. Proofs cannot be top-level and should always be defined inside an object.

    object MyProof {
      proof plusCommutes {
        forall (x: Int, y: Int) {
          x+y == y+x
        }
      }
    }

    Proofs can also be polymorphic:

    proof setConverges[T] {
      forall (x: GSet[T], y: GSet[T]) {
        x.merge(y) == y.merge(x)
      }
    }

    Besides the regular programming constructs, proofs can also contain logical constructs such as quantified formulas and logical implication:

    • forall (var1: Type1, ..., varN: TypeN) { booleanExp }
    • exists (var1: Type1, ..., varN: TypeN) { booleanExp }
    • booleanExp =>: booleanExp
    Organizing Code in Several Files

    In order to keep your project comprehensible, source code can be spread over several files. Files can import other files using the import keyword but this should always occur at the top of the file before anything else:

    import org.verifx.crdtproofs.GCounter

    Note that imports are different than in Scala. The above import statement will import everything from the GCounter file that should be located at src/org/verifx/crdtproofs/GCounter.vfx. Thus, the import statement merely encodes the path to the file, starting from the src folder.

    Definition Classes
    root
  • LList
  • Map
  • Set
  • Tuple
  • Vector
c

verifx

LList

class LList[V] extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LList
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new LList()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  6. def delete(pos: Int): LList[V]

    pos

    Index between 0 and size - 1.

    returns

    The modified list.

  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. def exists(f: (V) => Boolean): Boolean

    f

    A predicate.

    returns

    True if the predicate holds for at least one element. False otherwise.

  10. def forall(f: (V) => Boolean): Boolean

    f

    A predicate.

    returns

    True if the predicate holds for all elements. False, otherwise.

  11. def get(pos: Int): V

    pos

    Index between 0 and size - 1.

    returns

    The value that is stored at the given index.

  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. def insert(pos: Int, x: V): LList[V]

    pos

    Index at which to insert the given element. Must be between 0 and size. Inserting at position 0 is prepending. Inserting at size is appending.

    x

    Value to insert.

    returns

    The extended list.

  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. def map[W](f: (V) => W): LList[W]

    f

    Function to map over the list.

    returns

    The list that results from applying the function on every element.

  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. val size: Int
  21. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  22. def toString(): String
    Definition Classes
    AnyRef → Any
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. def wellFormed(): Boolean

    Constraints the list to only contain elements that are in range (i.e.

    Constraints the list to only contain elements that are in range (i.e. between 0 and size - 1). Only use this in the logical world, e.g. lst.wellFormed() =>: ...

  27. def zip[W](that: LList[W]): LList[Tuple[V, W]]

    W

    Type of the elements in the other list.

    that

    List to zip with.

    returns

    A list combining the elements from both lists in a tuple. The zipped list has the size of the smallest list.

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped