Uses of Class
org.variantsync.boosting.datastructure.CustomHashSet
Packages that use CustomHashSet
Package
Description
-
Uses of CustomHashSet in org.variantsync.boosting
Methods in org.variantsync.boosting that return CustomHashSetModifier and TypeMethodDescriptionTraceBoosting.extractAssociationsComparisonBased
(MainTree mainTree) Extracts associations from a given main tree by merging each product AST into the main tree and collecting corresponding main tree nodes in the product for backtracking later on.TraceBoosting.getAllFeatures()
-
Uses of CustomHashSet in org.variantsync.boosting.datastructure
Methods in org.variantsync.boosting.datastructure that return CustomHashSetModifier and TypeMethodDescriptionAssociation.getAll()
Returns the set off all modules.Association.getAstNodes()
Returns the set of AST nodes contained in this EccoSet.ASTNode.getChildren()
Returns a set of this node's child nodes.CustomHashSet
<org.logicng.formulas.Literal> Module.getLiterals()
Returns the set of literals contained in this Module.CustomHashSet
<org.logicng.formulas.Formula> ASTNode.getMappings()
Returns set set of all possible mappings (if the mapping is a DNF formula, each clause is a possible mapping on its own) for this node.Association.getMax()
Returns the set of max module.Association.getMin()
Returns the set of min modules.Association.getNot()
Returns the set of not modules.CustomHashSet.intersect
(CustomHashSet<E> toIntersect) Returns a new set that is an intersection between this set and the given setCustomHashSet.intersectElement
(E toIntersect) Returns a new set that is an intersection between this set and the given setCustomHashSet.powerSet()
Returns the power set of this set.CustomHashSet.unite
(CustomHashSet<E> toUnite) Returns a new set that is the union of this set and the given setMerges the Abstract Syntax Tree (AST) of the given product into the of this main AST (main tree) and returns the set of all nodes in the resulting main tree corresponding to the nodes of this AST.CustomHashSet.uniteElement
(E toUnite) Returns a new set that is the union of this set and the given setCustomHashSet.without
(CustomHashSet<E> without) Returns a new set that contains all elements in this set after removing the elements in the given setCustomHashSet.withoutElement
(E without) Returns a new set that contains all elements in this set after removing the elements in the given setMethods in org.variantsync.boosting.datastructure that return types with arguments of type CustomHashSetMethods in org.variantsync.boosting.datastructure with parameters of type CustomHashSetModifier and TypeMethodDescriptionCustomHashSet.intersect
(CustomHashSet<E> toIntersect) Returns a new set that is an intersection between this set and the given setvoid
Association.removeNodes
(CustomHashSet<ASTNode> toRemove) Removes the specified nodes from the current set of AST nodes.void
Association.setAll
(CustomHashSet<Module> all) Sets the all modules.void
Association.setMax
(CustomHashSet<Module> max) Sets the max modules.void
Association.setMin
(CustomHashSet<Module> min) Sets the min modules.void
Association.setNot
(CustomHashSet<Module> not) Sets the not modules.CustomHashSet.unite
(CustomHashSet<E> toUnite) Returns a new set that is the union of this set and the given setCustomHashSet.without
(CustomHashSet<E> without) Returns a new set that contains all elements in this set after removing the elements in the given setConstructors in org.variantsync.boosting.datastructure with parameters of type CustomHashSetModifierConstructorDescriptionAssociation
(CustomHashSet<Module> min, CustomHashSet<Module> all, CustomHashSet<Module> max, CustomHashSet<Module> not, CustomHashSet<ASTNode> astNodes) Constructs a new Association with the specified sets of modules and AST nodes.Module
(CustomHashSet<org.logicng.formulas.Literal> literals) Constructs a new Module with the given set of literals. -
Uses of CustomHashSet in org.variantsync.boosting.parsing
Fields in org.variantsync.boosting.parsing declared as CustomHashSetMethods in org.variantsync.boosting.parsing that return CustomHashSetModifier and TypeMethodDescriptionAbstractAST.collectAstNodes()
Collects all nodes (except the root node) of the Abstract Syntax Tree (AST) in one set to simplify their access.AbstractAST.getAstNodes()
Returns a set of all AST nodes in the tree.Constructors in org.variantsync.boosting.parsing with parameters of type CustomHashSetModifierConstructorDescriptionAbstractAST
(ASTNode root, CustomHashSet<ASTNode> astNodes, String... fileTypes) Constructs an AbstractAST with a specified root node, set of AST nodes, and optional filtering based on file types.CAST
(ASTNode root, CustomHashSet<ASTNode> astNodes) Constructs a new CAST object with the specified root node and AST nodes, and default file types ".c" and ".h".JavaAST
(ASTNode root, CustomHashSet<ASTNode> astNodes) LineAST
(ASTNode root, CustomHashSet<ASTNode> astNodes, String... fileTypes) Constructs a LineAST object with the specified root node, AST nodes, and file types. -
Uses of CustomHashSet in org.variantsync.boosting.product
Fields in org.variantsync.boosting.product declared as CustomHashSetModifier and TypeFieldDescriptionfinal CustomHashSet
<Feature> VariantInitTask.InitResult.allFeatures
A set of all features associated with the initialization.Methods in org.variantsync.boosting.product that return CustomHashSetModifier and TypeMethodDescriptionVariant.getAstNodesMainTree()
Returns the set of AST nodes in the main tree.Variant.getFeatures()
Retrieves the set of features associated with the variant.Methods in org.variantsync.boosting.product with parameters of type CustomHashSetModifier and TypeMethodDescriptionvoid
Variant.setAstNodesMainTree
(CustomHashSet<ASTNode> astNodesMainTree) Sets the AST nodes for the main tree.Constructors in org.variantsync.boosting.product with parameters of type CustomHashSetModifierConstructorDescriptionInitResult
(int id, CustomHashSet<Feature> allFeatures, Variant variant) Constructs a new InitResult with the specified ID, set of all features, and product.Variant
(String name, CustomHashSet<ASTNode> astNodesMainTree, AbstractAST productAST, CustomHashSet<Feature> features) Constructs a new Variant object with the given parameters.