From bc71d67647ac9b124cc666a43fc819cad20cfe06 Mon Sep 17 00:00:00 2001 From: Patrick Simianer
Date: Wed, 4 Jun 2014 20:32:43 +0200
Subject: pretty
---
grammar.rb | 16 ++++++++--------
hg.rb | 17 +++++++++--------
2 files changed, 17 insertions(+), 16 deletions(-)
diff --git a/grammar.rb b/grammar.rb
index 7bc6c9b..70e8fda 100644
--- a/grammar.rb
+++ b/grammar.rb
@@ -17,9 +17,9 @@ class NT
def initialize symbol=nil, index=nil, left=nil, right=nil
@symbol = symbol
- @index = index
- @left = left
- @right = right
+ @index = index
+ @left = left
+ @right = right
end
def from_s s
@@ -47,19 +47,19 @@ class Rule
attr_accessor :lhs, :rhs, :target, :map
def initialize lhs=nil, rhs=[], target=[]
- @lhs = lhs
- @rhs = rhs
+ @lhs = lhs
+ @rhs = rhs
@target = target
@arity_ = nil
end
def to_s
- "#{@lhs} -> #{@rhs.map{ |i| i.to_s }.join ' '} ||| #{@target.map{ |i| i.to_s }.join ' '} [arity=#{arity}]" #FIXME
+ "#{@lhs} -> #{@rhs.map{ |i| i.to_s }.join ' '} ||| #{@target.map{ |i| i.to_s }.join ' '} [arity=#{arity}]"
end
def arity
- return @arity_ if @arity_
- rhs.select { |i| i.class == NT }.size
+ @arity_ = rhs.select { |i| i.class == NT }.size if !@arity_
+ return @arity_
end
def read_right_ s
diff --git a/hg.rb b/hg.rb
index a7d1d99..f6af75d 100644
--- a/hg.rb
+++ b/hg.rb
@@ -1,7 +1,6 @@
#!/usr/bin/env ruby
require 'nlp_ruby'
-require 'json'
require_relative 'grammar'
@@ -9,7 +8,7 @@ module HG
class HG::Node
- attr_accessor :id, :cat, :outgoing, :incoming, :score
+ attr_accessor :id, :outgoing, :incoming, :score
def initialize id=nil, cat=nil, outgoing=[], incoming=[], score=nil
@id = id
@@ -19,7 +18,7 @@ class HG::Node
end
def to_s
- "Node