- Timestamp:
- 05/15/08 21:55:02 (17 years ago)
- Branches:
- master, help
- Children:
- b012e2a
- Parents:
- 6ac84d8
- git-author:
- obrebski <obrebski@…> (05/15/08 21:55:02)
- git-committer:
- obrebski <obrebski@…> (05/15/08 21:55:02)
- Location:
- app/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
app/src/dgp/tre.rb
radb4c8d r19760ef 1 1 #!/usr/bin/ruby -I /usr/local/lib/utt -I $HOME/.local/lib/utt 2 2 3 $: << "#{ENV['HOME']}/.local/lib/utt" 4 $: << "/usr/local/lib/utt" 5 3 6 require 'getoptlong' 7 require 'seg.rb' 4 8 5 9 opts = GetoptLong.new( … … 60 64 end 61 65 end 62 63 #require File.expand_path(File.dirname(__FILE__) + "../lib/utt/seg.rb")64 require 'seg.rb'65 66 66 67 $dgpsep=';' -
app/src/gue/cmdline_guess.ggo
r8d3e6ab r19760ef 8 8 option "dictionary" d "File with dictionary information" string typestr="filename" default="gue.bin" no 9 9 option "per-info" v "Display performance information" flag off 10 option "weights" w "Print weights" flag off hidden10 option "weights" w "Print weights" flag off 11 11 option "no-uppercase" - "Do not process form containing uppercase letters" flag off 12 12 -
app/src/gue/common_guess.cc
r6ac84d8 r19760ef 8 8 char dictionary[255]; 9 9 bool per_info=false; 10 bool weights= true;10 bool weights=false; 11 11 12 12 void process_guess_options(gengetopt_args_info* args) … … 56 56 57 57 if(args->weights_given) 58 weights= false;58 weights=true; 59 59 60 60 }
Note: See TracChangeset
for help on using the changeset viewer.