Package edu.wisc.game.parser
Interface Expression
- All Known Subinterfaces:
Expression.ArithmeticExpression
- All Known Implementing Classes:
Expression.AdditiveExpression
,Expression.BracketList
,Expression.ColonExpression
,Expression.ComparisonExpression
,Expression.ExList
,Expression.Id
,Expression.MultiplicativeExpression
,Expression.NegationExpression
,Expression.Num
,Expression.ParenList
,Expression.QualifiedId
,Expression.RangeExpression
,Expression.SerialExpression
,Expression.Star
public interface Expression
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
Expression.AdditiveExpression
static interface
Expression.ArithmeticExpression
An arithmetic expression is composed of variables, constants, and arithmetic operations; parentheses can be used for ordering operations.static class
Expression.BracketList
static class
Expression.ColonExpression
Id:ArithmeticExpression; used in GS 3static class
Expression.ComparisonExpression
Has exactly two operands, and the operator is '=='static class
Expression.ExList
Can be overridden as neededstatic class
Expression.Id
A variable.static interface
Expression.Mapper
A Mapper is something that can take a variable (Expression.Id) and produce another Expression (e.g.static class
Expression.MapTo<T>
A HashMap storing a set of values of a given type T for each keystatic class
Expression.MultiplicativeExpression
static class
Expression.NegationExpression
!E evaluates to [1] if E is an empty set, or to [] otherwisestatic class
Expression.Num
A numeric constantstatic class
Expression.ParenList
static class
Expression.PropMap
Values are String or Integerstatic class
Expression.QualifiedId
A.Bstatic class
Expression.RangeExpression
[Num..Num]static class
Expression.SerialExpression
Additive or multiplicativestatic class
Expression.Star
A Star expression is simply "*".static class
Expression.VarMap
static class
Expression.VarMap2
Objects in question may be Integer, String, or PropMap (ImageObject or equivalent) -
Field Summary
Fields Modifier and Type Field Description static Expression.Star
STAR
-
Method Summary
Modifier and Type Method Description Expression
map(Expression.Mapper mapper)
static Expression.BracketList
mkBracketList(Vector<Token> tokens)
static Expression
mkCounterOrAtom(Vector<Token> tokens)
Extracts one of the sections of a rule line: either the leading counter (int or star), or one of the atoms (paren lists that may include arithmetic expressions or stars)static Expression.ArithmeticExpression
mkLongestArithmeticExpression(Vector<Token> tokens)
Creates the longest ArithmeticExpression starting at the beginning of the tokens array.static Expression.ArithmeticExpression
mkLongestE1(Vector<Token> tokens)
E1 := (E) | Id.Id | Id | Num | -Num | [E,E,...]static Expression.ArithmeticExpression
mkLongestE2(Vector<Token> tokens)
E2 := E1 | !E2static Expression.ArithmeticExpression
mkLongestE3(Vector<Token> tokens)
E3 := E2 | E2*E2...static Expression.ArithmeticExpression
mkLongestE4(Vector<Token> tokens)
static Expression.ArithmeticExpression
mkLongestE5(Vector<Token> tokens)
static Expression.RangeExpression
mkRangeExpression(Vector<Token> tokens)
If the given sequence of tokens starts with a range expression, extracts it; otherwise, returns nullstatic HashSet<Integer>
moduloNB(Set<Integer> h0)
Translates all elements of the set to the [0..NBU-1] range, as appropriate for bucket numbersstatic HashSet<Integer>
moduloNB2(Set<Object> h0)
static Integer
toInteger(Object o)
String
toSrc()
-
Field Details
-
Method Details
-
toInteger
-
map
- Throws:
RuleParseException
-
toSrc
String toSrc() -
mkCounterOrAtom
Extracts one of the sections of a rule line: either the leading counter (int or star), or one of the atoms (paren lists that may include arithmetic expressions or stars)- Throws:
RuleParseException
-
mkRangeExpression
static Expression.RangeExpression mkRangeExpression(Vector<Token> tokens) throws RuleParseExceptionIf the given sequence of tokens starts with a range expression, extracts it; otherwise, returns null- Throws:
RuleParseException
-
mkLongestArithmeticExpression
static Expression.ArithmeticExpression mkLongestArithmeticExpression(Vector<Token> tokens) throws RuleParseExceptionCreates the longest ArithmeticExpression starting at the beginning of the tokens array.E := E5 E5 := E4 | E4==E4 E4 := E3 | E3+E3+... E3 := E2 | E2*E2... E2 := E1 | !E2 E1 := (E) | Id.Id | Id | Num | [E4,E4,...]
- Throws:
RuleParseException
-
mkLongestE5
- Throws:
RuleParseException
-
mkLongestE4
- Throws:
RuleParseException
-
mkLongestE3
E3 := E2 | E2*E2...- Throws:
RuleParseException
-
mkLongestE2
E2 := E1 | !E2- Throws:
RuleParseException
-
mkLongestE1
E1 := (E) | Id.Id | Id | Num | -Num | [E,E,...]- Throws:
RuleParseException
-
mkBracketList
- Throws:
RuleParseException
-
moduloNB
Translates all elements of the set to the [0..NBU-1] range, as appropriate for bucket numbers -
moduloNB2
-