Uses of Interface
dev.civl.abc.ast.node.IF.expression.IntegerConstantNode
Packages that use IntegerConstantNode
Package
Description
Submodule ast.node defines every kind of
node in an AST.
The ast.node.expression submodule defines AST nodes
for representing expressions in a program.
-
Uses of IntegerConstantNode in dev.civl.abc.ast.node.IF
Methods in dev.civl.abc.ast.node.IF that return IntegerConstantNodeModifier and TypeMethodDescriptionNodeFactory.newIntConstantNode(Source source, int value) A special case ofNodeFactory.newIntegerConstantNode(Source, String)where the 2nd arg is an integer, and the type of thisIntegerConstantNodeis int.NodeFactory.newIntegerConstantNode(Source source, String representation) Constructs a new integer constant node.Method parameters in dev.civl.abc.ast.node.IF with type arguments of type IntegerConstantNodeModifier and TypeMethodDescriptionNodeFactory.newDerivativeExpressionNode(Source source, ExpressionNode function, SequenceNode<PairNode<IdentifierExpressionNode, IntegerConstantNode>> partials, SequenceNode<ExpressionNode> arguments) Constructs a new CIVL-C derivative expression, used to represent the (partial) derivative of a function with respect to any number of variables, evaluated at a point. -
Uses of IntegerConstantNode in dev.civl.abc.ast.node.IF.expression
Methods in dev.civl.abc.ast.node.IF.expression that return IntegerConstantNodeMethods in dev.civl.abc.ast.node.IF.expression that return types with arguments of type IntegerConstantNodeModifier and TypeMethodDescriptionDerivativeExpressionNode.getPartial(int index) Returns the (identifier, int) pair at the specified index in the list of partial derivatives.