Interface Query<T>
- Type Parameters:
T
- type
public interface Query<T>
Query class
- Author:
- Mathias Hofer
-
Method Summary
Modifier and TypeMethodDescriptionconfigure
(Configuration configuration) Return a copy of this query but with the new configuration appliedexecute()
Return executeComputes the query in parallel.
-
Method Details
-
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
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
-