Ignore:
Timestamp:
08/16/12 12:34:24 (12 years ago)
Author:
sherbold
Message:
  • countless adaptations throughout nearly all components to remove errors introduced due to the refactoring of the event core
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-core-usageprofiles/src/main/java/de/ugoe/cs/quest/usageprofiles/IStochasticProcess.java

    r518 r547  
    3434         *             thrown if context or symbol is null 
    3535         */ 
    36         double getProbability(List<? extends Event<?>> context, Event<?> symbol); 
     36        double getProbability(List<Event> context, Event symbol); 
    3737 
    3838        /** 
     
    4848         *             thrown if sequence is null 
    4949         */ 
    50         double getProbability(List<? extends Event<?>> sequence); 
     50        double getProbability(List<Event> sequence); 
    5151 
    5252        /** 
     
    5858         * @return randomly generated sequence 
    5959         */ 
    60         public List<? extends Event<?>> randomSequence(); 
     60        public List<Event> randomSequence(); 
    6161 
    6262        /** 
     
    8181         *  
    8282         */ 
    83         public List<? extends Event<?>> randomSequence(int maxLength, 
     83        public List<Event> randomSequence(int maxLength, 
    8484                        boolean validEnd); 
    8585 
     
    9898         *             thrown if length is less than or equal to 0 
    9999         */ 
    100         public Collection<List<? extends Event<?>>> generateSequences(int length); 
     100        public Collection<List<Event>> generateSequences(int length); 
    101101 
    102102        /** 
     
    118118         *             thrown if length is less than or equal to 0 
    119119         */ 
    120         public Collection<List<? extends Event<?>>> generateSequences(int length, 
     120        public Collection<List<Event>> generateSequences(int length, 
    121121                        boolean fromStart); 
    122122 
     
    135135         *             thrown if length is less than or equal to 0 
    136136         */ 
    137         public Collection<List<? extends Event<?>>> generateValidSequences( 
     137        public Collection<List<Event>> generateValidSequences( 
    138138                        int length); 
    139139 
     
    190190         * @return events known by the process 
    191191         */ 
    192         public Collection<? extends Event<?>> getEvents(); 
     192        public Collection<Event> getEvents(); 
    193193 
    194194} 
Note: See TracChangeset for help on using the changeset viewer.