Changes in / [3:1]


Ignore:
Location:
/trunk
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • /trunk/EventBenchCore/src/de/ugoe/cs/eventbench/data/Event.java

    r3 r1  
    2626 
    2727 
     28         
     29 
    2830        private String idInfo = null; 
    2931         
     
    4446                        return false; 
    4547                } 
    46         } 
    47          
    48         @Override 
    49         public String toString() { 
    50                 return getStandardId(); 
    5148        } 
    5249 
  • /trunk/EventBenchCore/src/de/ugoe/cs/eventbench/markov/MarkovModel.java

    r3 r1  
    4646        } 
    4747         
     48        public void printRandomWalk() { 
     49                State currentState = initialState; 
     50                IMemory<State> history = new IncompleteMemory<State>(5); // this is NOT used here, just for testing ... 
     51                history.add(currentState); 
     52                Console.println(currentState.getId()); 
     53                while(!currentState.equals(endState)) { 
     54                        currentState = currentState.getNextState(); 
     55                        Console.println(currentState.getId()); 
     56                        history.add(currentState); 
     57                } 
     58        } 
     59         
    4860        public List<? extends Event<?>> randomSequence() { 
    4961                List<Event<?>> sequence = new LinkedList<Event<?>>(); 
     
    5264                        sequence.add(currentState.getAction()); 
    5365                } 
     66                System.out.println(currentState.getId()); 
    5467                while(!currentState.equals(endState)) { 
    5568                        currentState = currentState.getNextState(); 
     
    5770                                sequence.add(currentState.getAction()); 
    5871                        } 
     72                        System.out.println(currentState.getId()); 
    5973                } 
    6074                return sequence; 
Note: See TracChangeset for help on using the changeset viewer.