Ignore:
Timestamp:
08/02/14 13:26:00 (10 years ago)
Author:
rkrimmel
Message:

Trying to replace event instances in the sessions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ralph/src/main/java/de/ugoe/cs/autoquest/tasktrees/temporalrelation/RuleUtils.java

    r1401 r1645  
    9292    { 
    9393        ISequenceInstance subsequence = taskFactory.createNewTaskInstance(model); 
    94  
     94         
     95        
     96         
     97        System.out.println("Got model: " + model.toString()); 
     98         
     99        
     100         
     101        
     102         
     103        System.out.println(parent); 
     104        //System.out.println(parent.get(startIndex)); 
    95105        for (int i = startIndex; i <= endIndex; i++) { 
     106                System.out.println("Trying to add "+ parent.get(startIndex) + " to the model"); 
    96107            taskBuilder.addChild(subsequence, parent.get(startIndex)); 
     108             
    97109            taskBuilder.removeTaskInstance(parent, startIndex); 
    98110        } 
Note: See TracChangeset for help on using the changeset viewer.