Interface Query<T>

Type Parameters:
T - type

public interface Query<T>
Query class
Author:
Mathias Hofer
  • Method Summary

    Modifier and Type
    Method
    Description
    configure(Configuration configuration)
    Return a copy of this query but with the new configuration applied
    Return execute
    Computes the query in parallel.
  • Method Details

    • execute

      T execute()
      Return execute
      Returns:
      execute
    • executeParallel

      T executeParallel()
      Computes the query in parallel. Note: this is only recommended for "hard" queries, otherwise the parallelization overhead exceeds the solving time.
      Returns:
      return
    • configure

      Query<T> configure(Configuration configuration)
      Return a copy of this query but with the new configuration applied
      Parameters:
      configuration - configuration
      Returns:
      a copy of this query but with the new configuration applied