Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/cel/cea/CEA.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ public int getFinalState() {
return finalState;
}

public int getInitState() {
return initState;
}

public Collection<Transition> getTransitions() {
return new ArrayList<>(transitions);
}
Expand Down
8 changes: 8 additions & 0 deletions src/cel/query/Query.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,14 @@ public CEA getPatternCEA() {
return patternCEA.copy();
}

public SelectionStrategy getSelectionStrategy() {
return selectionStrategy;
}

public ConsumptionPolicy getConsumptionPolicy() {
return consumptionPolicy;
}

public Query(SelectionStrategy selectionStrategy,
ProjectionList projectionList,
Collection<StreamSchema> streamSchemas,
Expand Down
160 changes: 0 additions & 160 deletions src/cel/runtime/CELExecutor.java

This file was deleted.

Loading