Changeset b97a556 for src/tre


Ignore:
Timestamp:
11/19/13 10:07:16 (11 years ago)
Author:
Tomasz Obrebski <obrebski@…>
Branches:
master
Children:
b30c30d
Parents:
e0cd003
git-author:
Tomasz Obrebski <to@…> (11/19/13 09:55:00)
git-committer:
Tomasz Obrebski <obrebski@…> (11/19/13 10:07:16)
Message:

drobiazgi w dgp

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tre/tre

    r3b02b04 rb97a556  
    2121$helptext= 
    2222"The program generates trees from the graph output by dgp. dgp must\n"+ 
    23 "must be run with '-i ds' option.\n\n"+ 
     23"must be run with '--info=ds' option.\n\n"+ 
    2424"Command:       tre [options]\n\n"+ 
    2525"Options:\n"+ 
     
    269269 
    270270    if parts[3]==nil || parts[4]==nil || parts[5]==nil 
    271       $stderr.print "ERR: tre requires dgp be called with '--info s' option. Aborting.\n" 
     271      $stderr.print "ERR: tre requires dgp be called with '--info=ds' option. Aborting.\n" 
    272272      exit 
    273273    end 
     
    280280    $arcs |= parts[2].split(',').map{ |a| case a  
    281281                                          when /\-\-(\w+)-(\d+)\((\d+)~(\d+)\)/ 
    282                                             [i, $2.to_i, $1, $3.to_i, $4.to_i] 
     282                                            # [i, $2.to_i, $1, $3.to_i, $4.to_i] 
     283                                            [i, $2.to_i, $1, 0, 0] 
    283284                                          when /\+\+(\w+)-(\d+)\((\d+)~(\d+)\)/ 
    284                                             [$2.to_i, i, $1, $3.to_i, $4.to_i] 
     285                                            # [$2.to_i, i, $1, $3.to_i, $4.to_i] 
     286                                            [$2.to_i, i, $1, 0, 0] 
    285287                                          end } 
    286288    $succ |= parts[3][1..-2].split(',').map{|x| [x.to_i,i]} 
Note: See TracChangeset for help on using the changeset viewer.