jInfer

Uses of Interface
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.SymbolToString

Packages that use SymbolToString
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping Submodule for converting automaton to RegexpAutomaton and then obtaining Regexp from it. 
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.heuristic   
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered   
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering Interface of ordering submodule for StateRemoval
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering.fullscan   
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering.userinteractive Automaton is drawn to user. 
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering.weighted Simple heuristic for ordering states in automaton. 
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying AutomatonSimplifier module is responsible of generalization of automaton. 
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.chained   
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.defective.defectivemdl   
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.defective.defectivemdl.suspection   
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.defective.defectivemdl.suspection.onebyone   
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.defective.defectivemdl.suspection.stepsuspect   
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.defective.minimize   
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.determinist   
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.greedy Uses one MergeConditionTester that user selected in preferences. 
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.greedymdl Uses one MergeConditionTester that user selected in preferences. 
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.heuristicmdl Uses one MergeConditionTester that user selected in preferences. 
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.khgrams Package implementing automaton simplifying to form k,h-context automaton, but in linear time (in means of length of input rules). 
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.simplifiernull   
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.userinteractive Renders automaton to user and merges states, which user selected to be merged. 
 

Uses of SymbolToString in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping with parameters of type SymbolToString
 Regexp<T> RegexpAutomatonSimplifier.simplify(RegexpAutomaton<T> inputAutomaton, SymbolToString<Regexp<T>> symbolToString)
          Convert input RegexpAutomaton to Regexp which represents same language.
 

Uses of SymbolToString in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.heuristic
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.heuristic with parameters of type SymbolToString
 Regexp<T> StateRemovalHeuristic.simplify(RegexpAutomaton<T> inputAutomaton, SymbolToString<Regexp<T>> symbolToString)
           
 

Uses of SymbolToString in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered with parameters of type SymbolToString
 Regexp<T> StateRemovalOrdered.simplify(RegexpAutomaton<T> inputAutomaton, SymbolToString<Regexp<T>> symbolToString)
           
 

Uses of SymbolToString in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering with parameters of type SymbolToString
 State<Regexp<T>> Orderer.getStateToRemove(StateRemovalRegexpAutomaton<T> automaton, SymbolToString<Regexp<T>> symbolToString)
          Get the best state to remove first from automaton.
 

Uses of SymbolToString in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering.fullscan
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering.fullscan with parameters of type SymbolToString
 State<Regexp<T>> Fullscan.getStateToRemove(StateRemovalRegexpAutomaton<T> automaton, SymbolToString<Regexp<T>> symbolToString)
           
 

Uses of SymbolToString in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering.userinteractive
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering.userinteractive with parameters of type SymbolToString
 State<Regexp<T>> UserInteractive.getStateToRemove(StateRemovalRegexpAutomaton<T> automaton, SymbolToString<Regexp<T>> symbolToString)
           
 

Uses of SymbolToString in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering.weighted
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering.weighted with parameters of type SymbolToString
 State<Regexp<T>> Weighted.getStateToRemove(StateRemovalRegexpAutomaton<T> automaton, SymbolToString<Regexp<T>> symbolToString)
           
 

Uses of SymbolToString in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying with parameters of type SymbolToString
 Automaton<T> AutomatonSimplifier.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString)
          Simplify an automaton.
 Automaton<T> AutomatonSimplifier.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, List<List<T>> inputStrings)
          Simplify an automaton.
 Automaton<T> AutomatonSimplifier.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, String elementName)
          Simplify an automaton.
 Automaton<T> AutomatonSimplifier.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, String elementName, List<List<T>> inputStrings)
          Simplify an automaton.
 

Uses of SymbolToString in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.chained
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.chained with parameters of type SymbolToString
 Automaton<T> Chained.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString)
          Simplify by merging states greedily.
 Automaton<T> Chained.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, List<List<T>> inputStrings)
           
 Automaton<T> Chained.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, String elementName)
          Same as above.
 Automaton<T> Chained.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, String elementName, List<List<T>> inputStrings)
           
 

Uses of SymbolToString in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.defective.defectivemdl
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.defective.defectivemdl with parameters of type SymbolToString
 Automaton<T> DefectiveMDL.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString)
           
 Automaton<T> DefectiveMDL.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, List<List<T>> inputStrings)
          Simplify by merging states greedily.
 Automaton<T> DefectiveMDL.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, String elementName)
           
 Automaton<T> DefectiveMDL.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, String elementName, List<List<T>> inputStrings)
          Same as above.
 

Uses of SymbolToString in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.defective.defectivemdl.suspection
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.defective.defectivemdl.suspection with parameters of type SymbolToString
 void Suspection.setSymbolToString(SymbolToString<T> symbolToString)
           
 

Uses of SymbolToString in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.defective.defectivemdl.suspection.onebyone
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.defective.defectivemdl.suspection.onebyone with parameters of type SymbolToString
 void Onebyone.setSymbolToString(SymbolToString<T> symbolToString)
           
 

Uses of SymbolToString in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.defective.defectivemdl.suspection.stepsuspect
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.defective.defectivemdl.suspection.stepsuspect with parameters of type SymbolToString
 void StepSuspect.setSymbolToString(SymbolToString<T> symbolToString)
           
 

Uses of SymbolToString in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.defective.minimize
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.defective.minimize with parameters of type SymbolToString
 Automaton<T> Minimize.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString)
           
 Automaton<T> Minimize.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, List<List<T>> inputStrings)
          Simplify by merging states greedily.
 Automaton<T> Minimize.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, String elementName)
           
 Automaton<T> Minimize.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, String elementName, List<List<T>> inputStrings)
          Same as above.
 

Uses of SymbolToString in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.determinist
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.determinist with parameters of type SymbolToString
 Automaton<T> Determinist.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString)
          Simplify by merging states greedily.
 Automaton<T> Determinist.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, List<List<T>> inputStrings)
           
 Automaton<T> Determinist.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, String elementName)
          Same as above.
 Automaton<T> Determinist.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, String elementName, List<List<T>> inputStrings)
           
 

Uses of SymbolToString in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.greedy
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.greedy with parameters of type SymbolToString
 Automaton<T> Greedy.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString)
          Simplify by merging states greedily.
 Automaton<T> Greedy.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, List<List<T>> inputStrings)
           
 Automaton<T> Greedy.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, String elementName)
          Same as above.
 Automaton<T> Greedy.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, String elementName, List<List<T>> inputStrings)
           
 

Uses of SymbolToString in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.greedymdl
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.greedymdl with parameters of type SymbolToString
 Automaton<T> GreedyMDL.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString)
           
 Automaton<T> GreedyMDL.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, List<List<T>> inputStrings)
          Simplify by merging states greedily.
 Automaton<T> GreedyMDL.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, String elementName)
           
 Automaton<T> GreedyMDL.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, String elementName, List<List<T>> inputStrings)
          Same as above.
 

Uses of SymbolToString in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.heuristicmdl
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.heuristicmdl with parameters of type SymbolToString
 Automaton<T> HeuristicMDL.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString)
           
 Automaton<T> HeuristicMDL.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, List<List<T>> inputStrings)
          Simplify by merging states greedily.
 Automaton<T> HeuristicMDL.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, String elementName)
           
 Automaton<T> HeuristicMDL.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, String elementName, List<List<T>> inputStrings)
          Same as above.
 

Uses of SymbolToString in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.khgrams
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.khgrams with parameters of type SymbolToString
 Automaton<T> KHgrams.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString)
           
 Automaton<T> KHgrams.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, List<List<T>> inputStrings)
           
 Automaton<T> KHgrams.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, String elementName)
           
 Automaton<T> KHgrams.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, String elementName, List<List<T>> inputStrings)
           
 

Uses of SymbolToString in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.simplifiernull
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.simplifiernull with parameters of type SymbolToString
 Automaton<T> SimplifierNull.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString)
          Simplify by merging states greedily.
 Automaton<T> SimplifierNull.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, List<List<T>> inputStrings)
           
 Automaton<T> SimplifierNull.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, String elementName)
          Same as above.
 Automaton<T> SimplifierNull.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, String elementName, List<List<T>> inputStrings)
           
 

Uses of SymbolToString in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.userinteractive
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.simplifying.userinteractive with parameters of type SymbolToString
 Automaton<T> UserInteractive.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString)
           
 Automaton<T> UserInteractive.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, List<List<T>> inputStrings)
           
 Automaton<T> UserInteractive.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, String elementName)
           
 Automaton<T> UserInteractive.simplify(Automaton<T> inputAutomaton, SymbolToString<T> symbolToString, String elementName, List<List<T>> inputStrings)
           
 


jInfer

Generated on Fri Dec 9 00:01:25 CET 2011