Ignore:
Timestamp:
08/12/14 21:55:45 (10 years ago)
Author:
rkrimmel
Message:

Cleanup up the debubbing output

File:
1 edited

Legend:

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

    r1657 r1666  
    114114                //      System.out.println(subsequence.getSequence().getChildren().get(i));      
    115115                //} 
    116                 System.out.println(); 
     116                //System.out.println(); 
    117117                //TODO: This is dirty! 
    118118                missedOptionals=0; 
     
    129129                                                 
    130130                                        if(((IMarkingTemporalRelationship) tempTask).getMarkedTask() == parent.get(startIndex).getTask()) { 
    131                                                 System.out.println("Adding OptionalInstance " + parent.get(startIndex) + " to " + tempTask.getType()); 
     131                                                //System.out.println("Adding OptionalInstance " + parent.get(startIndex) + " to " + tempTask.getType()); 
    132132                                                IOptionalInstance optional = taskFactory.createNewTaskInstance((IOptional) tempTask); 
    133133                                                taskBuilder.setChild(optional, parent.get(startIndex)); 
     
    135135                                        } 
    136136                                        else { 
    137                                                 System.out.println("Adding Empty optional, not deleting anything from the input sequence"); 
     137                                                //System.out.println("Adding Empty optional, not deleting anything from the input sequence"); 
    138138                                                IOptionalInstance optional = taskFactory.createNewTaskInstance((IOptional) tempTask); 
    139139                                                taskBuilder.addChild(subsequence, optional); 
     
    143143                                        }                                
    144144                        } else if (tempTask.getType() == "selection") { 
    145                                 System.out.println("Adding SelectionInstance " + parent.get(startIndex) + " to " + tempTask.getType()); 
     145                                //System.out.println("Adding SelectionInstance " + parent.get(startIndex) + " to " + tempTask.getType()); 
    146146                                ISelectionInstance selection = taskFactory.createNewTaskInstance((ISelection) tempTask); 
    147147                                taskBuilder.setChild(selection, parent.get(startIndex) ); 
     
    149149 
    150150                        } else if (tempTask.getType() == "sequence") { 
    151                                 System.out.println("Adding SequenceInstance " + parent.get(startIndex) + " to " + tempTask.getType()); 
     151                                //System.out.println("Adding SequenceInstance " + parent.get(startIndex) + " to " + tempTask.getType()); 
    152152                                //TODO: Implement this 
    153153                                throw new NotImplementedException(); 
     
    155155                        } else if (tempTask.getType() == "iteration") { 
    156156                                //TODO: Implement this 
    157                                 System.out.println("Adding IterationInstance " + parent.get(startIndex) + " to " + tempTask.getType()); 
     157                                //System.out.println("Adding IterationInstance " + parent.get(startIndex) + " to " + tempTask.getType()); 
    158158                                throw new NotImplementedException(); 
    159159                        } else { 
    160                                 System.out.println("Adding EventInstance " + parent.get(startIndex) + " to " + tempTask.getType()); 
     160                                //System.out.println("Adding EventInstance " + parent.get(startIndex) + " to " + tempTask.getType()); 
    161161                                taskBuilder.addChild(subsequence, parent.get(startIndex)); 
    162162                        } 
     
    170170                        System.out.println(it.next()); 
    171171                }*/ 
    172                 System.out.println(); 
    173                 System.out.println(); 
     172                //System.out.println(); 
     173                //System.out.println(); 
    174174                 
    175175                taskBuilder.addTaskInstance(parent, startIndex, subsequence); 
Note: See TracChangeset for help on using the changeset viewer.