Uses of Interface
it.unitn.disi.smatch.data.matrices.IMatchMatrix

Packages that use IMatchMatrix
it.unitn.disi.smatch   
it.unitn.disi.smatch.data.matrices   
it.unitn.disi.smatch.filters   
it.unitn.disi.smatch.loaders   
it.unitn.disi.smatch.matchers.element   
it.unitn.disi.smatch.matchers.structure.node   
it.unitn.disi.smatch.matchers.structure.tree   
it.unitn.disi.smatch.renderers.mapping   
 

Uses of IMatchMatrix in it.unitn.disi.smatch
 

Methods in it.unitn.disi.smatch that return IMatchMatrix
 IMatchMatrix MatchManager.elementLevelMatching(IContext sourceContext, IContext targetContext)
           
 IMatchMatrix IMatchManager.elementLevelMatching(IContext sourceContext, IContext targetContext)
          Performs the third step of semantic matching algorithm
 IMatchMatrix MatchManager.filter(java.util.Vector args)
           
 IMatchMatrix IMatchManager.filter(java.util.Vector args)
          Performs additional filtering step executed after 4th step of semantic matching algorithm
 IMatchMatrix MatchManager.structureLevelMatching(IContext sourceContext, IContext targetContext, IMatchMatrix ClabMatrix)
           
 IMatchMatrix IMatchManager.structureLevelMatching(IContext sourceContext, IContext targetContext, IMatchMatrix ClabMatrix)
          Performs the fourth step of semantic matching algorithm
 

Methods in it.unitn.disi.smatch with parameters of type IMatchMatrix
 IMatchMatrix MatchManager.structureLevelMatching(IContext sourceContext, IContext targetContext, IMatchMatrix ClabMatrix)
           
 IMatchMatrix IMatchManager.structureLevelMatching(IContext sourceContext, IContext targetContext, IMatchMatrix ClabMatrix)
          Performs the fourth step of semantic matching algorithm
 

Uses of IMatchMatrix in it.unitn.disi.smatch.data.matrices
 

Classes in it.unitn.disi.smatch.data.matrices that implement IMatchMatrix
 class JavaSparseArray
          Implements a Java Sparse Array (see 10.1.1.13.7544.pdf).
 class MatchMatrix
          Default matrix for matching results.
 class SparseMatrixChar
          A sparse implementation using compressed row storage (CRS) scheme.
 

Methods in it.unitn.disi.smatch.data.matrices that return IMatchMatrix
static IMatchMatrix MatrixFactory.getInstance(int x, int y)
           
 

Uses of IMatchMatrix in it.unitn.disi.smatch.filters
 

Fields in it.unitn.disi.smatch.filters declared as IMatchMatrix
protected static IMatchMatrix RedundantGeneratorFilter.CnodMatrix
           
protected  IMatchMatrix RedundantFilter.CnodMatrix
           
 

Methods in it.unitn.disi.smatch.filters that return IMatchMatrix
 IMatchMatrix ZeroFilter.filter(java.util.Vector args)
           
 IMatchMatrix RetainEQFilter.filter(java.util.Vector args)
           
 IMatchMatrix RemoveDJFilter.filter(java.util.Vector args)
           
 IMatchMatrix RedundantGeneratorFilter.filter(java.util.Vector args)
           
 IMatchMatrix RedundantFilter.filter(java.util.Vector args)
           
 IMatchMatrix RandomSampleFilter.filter(java.util.Vector args)
           
 IMatchMatrix IntegrationFilter.filter(java.util.Vector args)
           
 IMatchMatrix IFilter.filter(java.util.Vector args)
           
 IMatchMatrix DefaultFilter.filter(java.util.Vector args)
           
 IMatchMatrix IntegrationFilter.filterMatrix(IMatchMatrix matrix, int x, int y)
           
 IMatchMatrix DefaultFilter.filterMatrix(IMatchMatrix matrix, int x, int y)
           
 

Methods in it.unitn.disi.smatch.filters with parameters of type IMatchMatrix
 IMatchMatrix IntegrationFilter.filterMatrix(IMatchMatrix matrix, int x, int y)
           
 IMatchMatrix DefaultFilter.filterMatrix(IMatchMatrix matrix, int x, int y)
           
 

Uses of IMatchMatrix in it.unitn.disi.smatch.loaders
 

Methods in it.unitn.disi.smatch.loaders that return IMatchMatrix
 IMatchMatrix PlainMappingLoader.loadMapping(IContext ctxSource, IContext ctxTarget, java.lang.String fileName)
           
 IMatchMatrix IMappingLoader.loadMapping(IContext ctxSource, IContext ctxTarget, java.lang.String fileName)
           
 

Uses of IMatchMatrix in it.unitn.disi.smatch.matchers.element
 

Methods in it.unitn.disi.smatch.matchers.element that return IMatchMatrix
 IMatchMatrix MatcherLibrary.elementLevelMatching(IContext sourceContext, IContext targetContext)
          Performs Step 3 of semantic matching algorithm
 IMatchMatrix IMatcherLibrary.elementLevelMatching(IContext sourceContext, IContext targetContext)
          Performs Step 3 of semantic matching algorithm
 IMatchMatrix EvalELMatcher.elementLevelMatching(IContext sourceContext, IContext targetContext)
          Matches acols of same nodes.
static IMatchMatrix MatcherLibrary.readMatrix(java.lang.String fileName)
           
 

Methods in it.unitn.disi.smatch.matchers.element with parameters of type IMatchMatrix
static void MatcherLibrary.writeMatrix(IMatchMatrix h, java.lang.String fileName)
           
 

Uses of IMatchMatrix in it.unitn.disi.smatch.matchers.structure.node
 

Methods in it.unitn.disi.smatch.matchers.structure.node with parameters of type IMatchMatrix
protected static java.lang.Object[] BaseNodeMatcher.mkAxioms(java.util.HashMap<IAtomicConceptOfLabel,java.lang.Integer> hashConceptNumber, IMatchMatrix cLabMatrix, INode sourceNode, INode targetNode)
           
protected static java.lang.Object[] EvalNodeMatcher.mkAxioms(java.util.Hashtable<IAtomicConceptOfLabel,java.lang.Integer> hashConceptNumber, IMatchMatrix cLabMatrix, INode sourceNode, INode targetNode)
           
 boolean OptimizedStageNodeMatcher.nodeDisjoint(IMatchMatrix cLabMatrix, INode sourceNode, INode targetNode)
           
 char INodeMatcher.nodeMatch(IMatchMatrix cLabMatrix, INode sourceNode, INode targetNode)
          Matches two nodes and returns a relation between them.
 char EvalNodeMatcher.nodeMatch(IMatchMatrix cLabMatrix, INode sourceNode, INode targetNode)
           
 char DefaultNodeMatcher.nodeMatch(IMatchMatrix cLabMatrix, INode sourceNode, INode targetNode)
           
 boolean OptimizedStageNodeMatcher.nodeSubsumedBy(IMatchMatrix cLabMatrix, INode sourceNode, INode targetNode)
           
 

Uses of IMatchMatrix in it.unitn.disi.smatch.matchers.structure.tree
 

Methods in it.unitn.disi.smatch.matchers.structure.tree that return IMatchMatrix
 IMatchMatrix OptimizedStageTreeMatcher.treeMatch(IContext sourceContext, IContext targetContext, IMatchMatrix ClabMatrixParam)
           
 IMatchMatrix ITreeMatcher.treeMatch(IContext sourceContext, IContext targetContext, IMatchMatrix ClabMatrix)
          Matches two contexts.
 IMatchMatrix EvalTLMatcher.treeMatch(IContext sourceContext, IContext targetContext, IMatchMatrix ClabMatrix)
           
 IMatchMatrix DefaultTreeMatcher.treeMatch(IContext sourceContext, IContext targetContext, IMatchMatrix ClabMatrix)
           
 IMatchMatrix BaselineTreeMatcher.treeMatch(IContext sourceContext, IContext targetContext, IMatchMatrix ClabMatrix)
           
 

Methods in it.unitn.disi.smatch.matchers.structure.tree with parameters of type IMatchMatrix
 IMatchMatrix OptimizedStageTreeMatcher.treeMatch(IContext sourceContext, IContext targetContext, IMatchMatrix ClabMatrixParam)
           
 IMatchMatrix ITreeMatcher.treeMatch(IContext sourceContext, IContext targetContext, IMatchMatrix ClabMatrix)
          Matches two contexts.
 IMatchMatrix EvalTLMatcher.treeMatch(IContext sourceContext, IContext targetContext, IMatchMatrix ClabMatrix)
           
 IMatchMatrix DefaultTreeMatcher.treeMatch(IContext sourceContext, IContext targetContext, IMatchMatrix ClabMatrix)
           
 IMatchMatrix BaselineTreeMatcher.treeMatch(IContext sourceContext, IContext targetContext, IMatchMatrix ClabMatrix)
           
 

Uses of IMatchMatrix in it.unitn.disi.smatch.renderers.mapping
 

Methods in it.unitn.disi.smatch.renderers.mapping with parameters of type IMatchMatrix
 IMapping TaxMEMappingRenderer.fromMatrixToMapping(IMatchMatrix matrix, java.util.Vector<INode> sourceNodes, java.util.Vector<INode> targetNodes)
           
protected  void PlainXTopRenderer.printMatricesToFile(java.lang.String fileName, IMatchMatrix ClabMatrix, IMatchMatrix CnodMatrix, java.util.Vector<IAtomicConceptOfLabel> sourceACoLs, java.util.Vector<IAtomicConceptOfLabel> targetACoLs, java.util.Vector<INode> sourceNodes, java.util.Vector<INode> targetNodes)
          Prints cLab and cNode Matrices into file
protected  void PlainSortedRenderer.printMatricesToFile(java.lang.String fileName, IMatchMatrix ClabMatrix, IMatchMatrix CnodMatrix, java.util.Vector<IAtomicConceptOfLabel> sourceACoLs, java.util.Vector<IAtomicConceptOfLabel> targetACoLs, java.util.Vector<INode> sourceNodes, java.util.Vector<INode> targetNodes)
          Prints cLab and cNode Matrices into file
protected  void PlainRenderer.printMatricesToFile(java.lang.String fileName, IMatchMatrix ClabMatrix, IMatchMatrix CnodMatrix, java.util.Vector<IAtomicConceptOfLabel> sourceACoLs, java.util.Vector<IAtomicConceptOfLabel> targetACoLs, java.util.Vector<INode> sourceNodes, java.util.Vector<INode> targetNodes)
          Prints cLab and cNode Matrices into file
protected  void DefaultHTMLMappingRenderer.printMatricesToFile(java.lang.String fileName, IMatchMatrix ClabMatrix, IMatchMatrix CnodMatrix, java.util.Vector<IAtomicConceptOfLabel> sourceACoLs, java.util.Vector<IAtomicConceptOfLabel> targetACoLs, java.util.Vector<INode> sourceNodes, java.util.Vector<INode> targetNodes)
          Prints cLab and cNode Matrices into file
 



© 2010 Knowdive @ DISI