Changeset 2218 for trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe
- Timestamp:
- 11/29/17 14:55:48 (7 years ago)
- Location:
- trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe/cs/autoquest/usageprofiles
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe/cs/autoquest/usageprofiles/IStochasticProcess.java
r2026 r2218 89 89 * Generates a random sequence of events. The sequence starts with {@link Event#STARTEVENT} and 90 90 * finishes with 91 * </p> 91 92 * <ul> 92 93 * <li>{@link Event#ENDEVENT} if validEnd==true.</li> … … 95 96 * is reached and the final event of the sequence must not be {@link Event#ENDEVENT}.</li> 96 97 * </ul> 97 * </p>98 98 * 99 99 * @param maxLength -
trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe/cs/autoquest/usageprofiles/InvertedHighOrderMarkovModel.java
r2049 r2218 58 58 * <p> 59 59 * Calculates the probability of the next Event being symbol based on the order of the Markov 60 * model. The order is defined in the constructor {@link # HighOrderMarkovModel(int, Random)}.60 * model. The order is defined in the constructor {@link #InvertedHighOrderMarkovModel(int, Random)}. 61 61 * </p> 62 62 * -
trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe/cs/autoquest/usageprofiles/ModelFlattener.java
r927 r2218 30 30 * <p> 31 31 * If possible, the normal high-order markov model should be used, as the Events may be broken by 32 * the flattener, as, e.g., the information {@link ReplayableEvent}s contain is not preserved.32 * the flattener, as, e.g., the information replayable events contain is not preserved. 33 33 * </p> 34 34 * -
trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe/cs/autoquest/usageprofiles/SymbolComparator.java
r1282 r2218 31 31 * symbols as equal. The method must be commutative and transitive, i.e., 32 32 * <code>equals(symbol1, symbol2) == equals(symbol2, symbol1)</code> and 33 * <code>if (equals(symbol1, symbol2) & &equals(symbol2, symbol3)) then33 * <code>if (equals(symbol1, symbol2) && equals(symbol2, symbol3)) then 34 34 * equals(symbol1, symbol3)</code>. 35 35 * </p> -
trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe/cs/autoquest/usageprofiles/SymbolMap.java
r1282 r2218 37 37 * @author Patrick Harms 38 38 * 39 * @param < T>39 * @param <K> 40 40 * Type of the symbols that are stored 41 41 * @param <V> … … 104 104 * @param value the value to associate to the symbol in this map 105 105 * 106 * @return as described107 *108 106 * @throws IllegalArgumentException if the provided symbol is null 109 107 */ -
trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe/cs/autoquest/usageprofiles/Trie.java
r1282 r2218 29 29 /** 30 30 * <p> 31 * This class implements a <it>trie</it>, i.e., a tree of sequences that represents the occurrence31 * This class implements a trie, i.e., a tree of sequences that represents the occurrence 32 32 * of subsequences up to a predefined length. This length is the trie order. 33 33 * </p>
Note: See TracChangeset
for help on using the changeset viewer.