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-coverage/src/main/java/de/ugoe/cs/quest/coverage/CoverageCalculatorProcess.java

    r518 r547  
    3333         * </p> 
    3434         */ 
    35         private Collection<List<? extends Event<?>>> sequences; 
     35        private Collection<List<Event>> sequences; 
    3636 
    3737        /** 
     
    4848         * </p> 
    4949         */ 
    50         private Collection<List<? extends Event<?>>> containedSubSeqs = null; 
     50        private Collection<List<Event>> containedSubSeqs = null; 
    5151 
    5252        /** 
     
    5656         * </p> 
    5757         */ 
    58         private Collection<List<? extends Event<?>>> allPossibleSubSeqs = null; 
     58        private Collection<List<Event>> allPossibleSubSeqs = null; 
    5959 
    6060        /** 
     
    6464         * </p> 
    6565         */ 
    66         private Map<List<? extends Event<?>>, Double> subSeqWeights = null; 
     66        private Map<List<Event>, Double> subSeqWeights = null; 
    6767 
    6868        /** 
     
    8585         */ 
    8686        public CoverageCalculatorProcess(IStochasticProcess process, 
    87                         Collection<List<? extends Event<?>>> sequences, int length) { 
     87                        Collection<List<Event>> sequences, int length) { 
    8888                if (process == null) { 
    8989                        throw new InvalidParameterException("process must not be null"); 
     
    159159                } 
    160160                double weight = 0.0; 
    161                 for (List<? extends Event<?>> subSeq : containedSubSeqs) { 
     161                for (List<Event> subSeq : containedSubSeqs) { 
    162162                        Double curWeight = subSeqWeights.get(subSeq); 
    163163                        if( curWeight!=null ) { 
     
    208208         *             thrown is newSequences is null 
    209209         */ 
    210         public void setSequences(Collection<List<? extends Event<?>>> newSequences) { 
     210        public void setSequences(Collection<List<Event>> newSequences) { 
    211211                if (newSequences == null) { 
    212212                        throw new InvalidParameterException("sequences must not be null"); 
Note: See TracChangeset for help on using the changeset viewer.