Package | Description |
---|---|
org.clafer.collection |
This package provides various data structures common throughout the project.
|
org.clafer.ir.compiler |
This package provides a compiler to translate IR to Choco.
|
Modifier and Type | Class and Description |
---|---|
class |
Left<A,B> |
class |
Right<A,B> |
Modifier and Type | Method and Description |
---|---|
static <A,B> Either<A,B> |
Either.left(A left) |
static <A,B> Either<A,B> |
Either.right(B right) |
Modifier and Type | Method and Description |
---|---|
static <A,B> A[] |
Either.filterLeft(Either<A,B>[] eithers,
A... array) |
static <A,B> B[] |
Either.filterRight(Either<A,B>[] eithers,
B... array) |
Modifier and Type | Method and Description |
---|---|
static <A,B> List<A> |
Either.filterLeft(List<Either<A,B>> eithers) |
static <A,B> List<B> |
Either.filterRight(List<Either<A,B>> eithers) |
Modifier and Type | Method and Description |
---|---|
Either<Boolean,solver.variables.BoolVar> |
IrSolutionMap.getBoolVar(IrBoolVar var) |
Either<Boolean,solver.variables.BoolVar>[] |
IrSolutionMap.getBoolVars(IrBoolVar... vars) |
Either<Integer,solver.variables.IntVar> |
IrSolutionMap.getIntVar(IrIntVar var) |
Either<Integer,solver.variables.IntVar>[] |
IrSolutionMap.getIntVars(IrIntVar... vars) |
Either<int[],solver.variables.SetVar> |
IrSolutionMap.getSetVar(IrSetVar var) |
Either<int[],solver.variables.SetVar>[] |
IrSolutionMap.getSetVars(IrSetVar... vars) |
Copyright © 2013. All Rights Reserved.