| 117 | | # Meronym synset pointer types |
| 118 | | MeronymTypes = { |
| 119 | | :member => '%m', |
| 120 | | :stuff => '%s', |
| 121 | | :portion => '%o', |
| 122 | | :component => '%p', |
| 123 | | :feature => '%f', |
| 124 | | :phase => '%a', |
| 125 | | :place => '%l', |
| 126 | | } |
| 127 | | |
| 128 | | # Meronym indicator -> type map |
| 129 | | MeronymSymbols = MeronymTypes.invert |
| 130 | | |
| 131 | | # Map the meronym types into their own constants (eg., MemberMeronym) |
| 132 | | MeronymTypes.each {|sym,val| |
| 133 | | cname = sym.to_s.capitalize + "Meronym" |
| 134 | | const_set( cname, val ) |
| 135 | | } |
| 136 | | |
| 137 | | # Holonym synset pointer types |
| 138 | | HolonymTypes = { |
| 139 | | :member => '#m', |
| 140 | | :stuff => '#s', |
| 141 | | :portion => '#o', |
| 142 | | :component => '#p', |
| 143 | | :feature => '#f', |
| 144 | | :phase => '#a', |
| 145 | | :place => '#l', |
| 146 | | } |
| 147 | | |
| 148 | | # Holonym indicator -> type map |
| 149 | | HolonymSymbols = HolonymTypes.invert |
| 150 | | |
| 151 | | # Map the holonym types into their own constants (eg., MemberHolonym) |
| 152 | | HolonymTypes.each {|sym,val| |
| 153 | | cname = sym.to_s.capitalize + "Holonym" |
| 154 | | const_set( cname, val ) |
| 155 | | } |
| 156 | | |
| 157 | | # Domain synset pointer types |
| 158 | | DomainTypes = { |
| 159 | | :category => ';c', |
| 160 | | :region => ';r', |
| 161 | | :usage => ';u', |
| 162 | | } |
| 163 | | |
| 164 | | # Domain indicator -> type map |
| 165 | | DomainSymbols = DomainTypes.invert |
| 166 | | |
| 167 | | # Map the domain types into their own constants (eg., CategoryDomain) |
| 168 | | DomainTypes.each {|sym,val| |
| 169 | | cname = sym.to_s.capitalize + "Domain" |
| 170 | | const_set( cname, val ) |
| 171 | | } |
| 172 | | |
| 173 | | # Member synset pointer types |
| 174 | | MemberTypes = { |
| 175 | | :category => '-c', |
| 176 | | :region => '-r', |
| 177 | | :usage => '-u', |
| 178 | | } |
| 179 | | |
| 180 | | # Member indicator -> type map |
| 181 | | MemberSymbols = MemberTypes.invert |
| 182 | | |
| 183 | | # Map the member types into their own constants (eg., CategoryMember) |
| 184 | | MemberTypes.each {|sym,val| |
| 185 | | cname = sym.to_s.capitalize + "Member" |
| 186 | | const_set( cname, val ) |
| 187 | | } |
| 188 | | |
| 189 | | # Map of primary types to maps of their subtypes |
| 190 | | PointerSubTypes = { |
| | 118 | # Meronym synset pointer types |
| | 119 | MeronymTypes = { |
| | 120 | :member => '%m', |
| | 121 | :stuff => '%s', |
| | 122 | :portion => '%o', |
| | 123 | :component => '%p', |
| | 124 | :feature => '%f', |
| | 125 | :phase => '%a', |
| | 126 | :place => '%l', |
| | 127 | } |
| | 128 | |
| | 129 | # Meronym indicator -> type map |
| | 130 | MeronymSymbols = MeronymTypes.invert |
| | 131 | |
| | 132 | # Map the meronym types into their own constants (eg., MemberMeronym) |
| | 133 | MeronymTypes.each {|sym,val| |
| | 134 | cname = sym.to_s.capitalize + "Meronym" |
| | 135 | const_set( cname, val ) |
| | 136 | } |
| | 137 | |
| | 138 | # Holonym synset pointer types |
| | 139 | HolonymTypes = { |
| | 140 | :member => '#m', |
| | 141 | :stuff => '#s', |
| | 142 | :portion => '#o', |
| | 143 | :component => '#p', |
| | 144 | :feature => '#f', |
| | 145 | :phase => '#a', |
| | 146 | :place => '#l', |
| | 147 | } |
| | 148 | |
| | 149 | # Holonym indicator -> type map |
| | 150 | HolonymSymbols = HolonymTypes.invert |
| | 151 | |
| | 152 | # Map the holonym types into their own constants (eg., MemberHolonym) |
| | 153 | HolonymTypes.each {|sym,val| |
| | 154 | cname = sym.to_s.capitalize + "Holonym" |
| | 155 | const_set( cname, val ) |
| | 156 | } |
| | 157 | |
| | 158 | # Domain synset pointer types |
| | 159 | DomainTypes = { |
| | 160 | :category => ';c', |
| | 161 | :region => ';r', |
| | 162 | :usage => ';u', |
| | 163 | } |
| | 164 | |
| | 165 | # Domain indicator -> type map |
| | 166 | DomainSymbols = DomainTypes.invert |
| | 167 | |
| | 168 | # Map the domain types into their own constants (eg., CategoryDomain) |
| | 169 | DomainTypes.each {|sym,val| |
| | 170 | cname = sym.to_s.capitalize + "Domain" |
| | 171 | const_set( cname, val ) |
| | 172 | } |
| | 173 | |
| | 174 | # Member synset pointer types |
| | 175 | MemberTypes = { |
| | 176 | :category => '-c', |
| | 177 | :region => '-r', |
| | 178 | :usage => '-u', |
| | 179 | } |
| | 180 | |
| | 181 | # Member indicator -> type map |
| | 182 | MemberSymbols = MemberTypes.invert |
| | 183 | |
| | 184 | # Map the member types into their own constants (eg., CategoryMember) |
| | 185 | MemberTypes.each {|sym,val| |
| | 186 | cname = sym.to_s.capitalize + "Member" |
| | 187 | const_set( cname, val ) |
| | 188 | } |
| | 189 | |
| | 190 | # Map of primary types to maps of their subtypes |
| | 191 | PointerSubTypes = { |
| 193 | | :meronym => MeronymTypes, |
| 194 | | :holonym => HolonymTypes, |
| 195 | | :member => MemberTypes, |
| 196 | | :domain => DomainTypes, |
| 197 | | } |
| 198 | | |
| 199 | | |
| 200 | | # Record-part delimiter |
| 201 | | Delim = '||' |
| 202 | | DelimRe = Regexp::new( Regexp::quote(Delim) ) |
| 203 | | |
| 204 | | # Record-subpart delimiter |
| 205 | | SubDelim = '|' |
| 206 | | SubDelimRe = Regexp::new( Regexp::quote(SubDelim) ) |
| 207 | | |
| 208 | | # Lexicographer file index |
| 209 | | Lexfiles = [ |
| 210 | | "adj.all", |
| 211 | | "adj.pert", |
| 212 | | "adv.all", |
| 213 | | "noun.Tops", |
| 214 | | "noun.act", |
| 215 | | "noun.animal", |
| 216 | | "noun.artifact", |
| 217 | | "noun.attribute", |
| 218 | | "noun.body", |
| 219 | | "noun.cognition", |
| 220 | | "noun.communication", |
| 221 | | "noun.event", |
| 222 | | "noun.feeling", |
| 223 | | "noun.food", |
| 224 | | "noun.group", |
| 225 | | "noun.location", |
| 226 | | "noun.motive", |
| 227 | | "noun.object", |
| 228 | | "noun.person", |
| 229 | | "noun.phenomenon", |
| 230 | | "noun.plant", |
| 231 | | "noun.possession", |
| 232 | | "noun.process", |
| 233 | | "noun.quantity", |
| 234 | | "noun.relation", |
| 235 | | "noun.shape", |
| 236 | | "noun.state", |
| 237 | | "noun.substance", |
| 238 | | "noun.time", |
| 239 | | "verb.body", |
| 240 | | "verb.change", |
| 241 | | "verb.cognition", |
| 242 | | "verb.communication", |
| 243 | | "verb.competition", |
| 244 | | "verb.consumption", |
| 245 | | "verb.contact", |
| 246 | | "verb.creation", |
| 247 | | "verb.emotion", |
| 248 | | "verb.motion", |
| 249 | | "verb.perception", |
| 250 | | "verb.possession", |
| 251 | | "verb.social", |
| 252 | | "verb.stative", |
| 253 | | "verb.weather", |
| 254 | | "adj.ppl" |
| 255 | | ] |
| 256 | | |
| 257 | | # Verb sentences (?) -- used in building verb frames. |
| 258 | | VerbSents = [ |
| 259 | | "", |
| 260 | | "Something ----s", |
| 261 | | "Somebody ----s", |
| 262 | | "It is ----ing", |
| 263 | | "Something is ----ing PP", |
| 264 | | "Something ----s something Adjective/Noun", |
| 265 | | "Something ----s Adjective/Noun", |
| 266 | | "Somebody ----s Adjective", |
| 267 | | "Somebody ----s something", |
| 268 | | "Somebody ----s somebody", |
| 269 | | "Something ----s somebody", |
| 270 | | "Something ----s something", |
| 271 | | "Something ----s to somebody", |
| 272 | | "Somebody ----s on something", |
| 273 | | "Somebody ----s somebody something", |
| 274 | | "Somebody ----s something to somebody", |
| 275 | | "Somebody ----s something from somebody", |
| 276 | | "Somebody ----s somebody with something", |
| 277 | | "Somebody ----s somebody of something", |
| 278 | | "Somebody ----s something on somebody", |
| 279 | | "Somebody ----s somebody PP", |
| 280 | | "Somebody ----s something PP", |
| 281 | | "Somebody ----s PP", |
| 282 | | "Somebody's (body part) ----s", |
| 283 | | "Somebody ----s somebody to INFINITIVE", |
| 284 | | "Somebody ----s somebody INFINITIVE", |
| 285 | | "Somebody ----s that CLAUSE", |
| 286 | | "Somebody ----s to somebody", |
| 287 | | "Somebody ----s to INFINITIVE", |
| 288 | | "Somebody ----s whether INFINITIVE", |
| 289 | | "Somebody ----s somebody into V-ing something", |
| 290 | | "Somebody ----s something with something", |
| 291 | | "Somebody ----s INFINITIVE", |
| 292 | | "Somebody ----s VERB-ing", |
| 293 | | "It ----s that CLAUSE", |
| 294 | | "Something ----s INFINITIVE" |
| 295 | | ] |
| 296 | | |
| 297 | | |
| 298 | | end # module Constants |
| 299 | | |
| 300 | | # Make the constants available under the WordNet namespace, too. |
| 301 | | include Constants |
| | 194 | :meronym => MeronymTypes, |
| | 195 | :holonym => HolonymTypes, |
| | 196 | :member => MemberTypes, |
| | 197 | :domain => DomainTypes, |
| | 198 | } |
| | 199 | |
| | 200 | |
| | 201 | # Record-part delimiter |
| | 202 | Delim = '||' |
| | 203 | DelimRe = Regexp::new( Regexp::quote(Delim) ) |
| | 204 | |
| | 205 | # Record-subpart delimiter |
| | 206 | SubDelim = '|' |
| | 207 | SubDelimRe = Regexp::new( Regexp::quote(SubDelim) ) |
| | 208 | |
| | 209 | # Lexicographer file index |
| | 210 | Lexfiles = [ |
| | 211 | "adj.all", |
| | 212 | "adj.pert", |
| | 213 | "adv.all", |
| | 214 | "noun.Tops", |
| | 215 | "noun.act", |
| | 216 | "noun.animal", |
| | 217 | "noun.artifact", |
| | 218 | "noun.attribute", |
| | 219 | "noun.body", |
| | 220 | "noun.cognition", |
| | 221 | "noun.communication", |
| | 222 | "noun.event", |
| | 223 | "noun.feeling", |
| | 224 | "noun.food", |
| | 225 | "noun.group", |
| | 226 | "noun.location", |
| | 227 | "noun.motive", |
| | 228 | "noun.object", |
| | 229 | "noun.person", |
| | 230 | "noun.phenomenon", |
| | 231 | "noun.plant", |
| | 232 | "noun.possession", |
| | 233 | "noun.process", |
| | 234 | "noun.quantity", |
| | 235 | "noun.relation", |
| | 236 | "noun.shape", |
| | 237 | "noun.state", |
| | 238 | "noun.substance", |
| | 239 | "noun.time", |
| | 240 | "verb.body", |
| | 241 | "verb.change", |
| | 242 | "verb.cognition", |
| | 243 | "verb.communication", |
| | 244 | "verb.competition", |
| | 245 | "verb.consumption", |
| | 246 | "verb.contact", |
| | 247 | "verb.creation", |
| | 248 | "verb.emotion", |
| | 249 | "verb.motion", |
| | 250 | "verb.perception", |
| | 251 | "verb.possession", |
| | 252 | "verb.social", |
| | 253 | "verb.stative", |
| | 254 | "verb.weather", |
| | 255 | "adj.ppl" |
| | 256 | ] |
| | 257 | |
| | 258 | # Verb sentences (?) -- used in building verb frames. |
| | 259 | VerbSents = [ |
| | 260 | "", |
| | 261 | "Something ----s", |
| | 262 | "Somebody ----s", |
| | 263 | "It is ----ing", |
| | 264 | "Something is ----ing PP", |
| | 265 | "Something ----s something Adjective/Noun", |
| | 266 | "Something ----s Adjective/Noun", |
| | 267 | "Somebody ----s Adjective", |
| | 268 | "Somebody ----s something", |
| | 269 | "Somebody ----s somebody", |
| | 270 | "Something ----s somebody", |
| | 271 | "Something ----s something", |
| | 272 | "Something ----s to somebody", |
| | 273 | "Somebody ----s on something", |
| | 274 | "Somebody ----s somebody something", |
| | 275 | "Somebody ----s something to somebody", |
| | 276 | "Somebody ----s something from somebody", |
| | 277 | "Somebody ----s somebody with something", |
| | 278 | "Somebody ----s somebody of something", |
| | 279 | "Somebody ----s something on somebody", |
| | 280 | "Somebody ----s somebody PP", |
| | 281 | "Somebody ----s something PP", |
| | 282 | "Somebody ----s PP", |
| | 283 | "Somebody's (body part) ----s", |
| | 284 | "Somebody ----s somebody to INFINITIVE", |
| | 285 | "Somebody ----s somebody INFINITIVE", |
| | 286 | "Somebody ----s that CLAUSE", |
| | 287 | "Somebody ----s to somebody", |
| | 288 | "Somebody ----s to INFINITIVE", |
| | 289 | "Somebody ----s whether INFINITIVE", |
| | 290 | "Somebody ----s somebody into V-ing something", |
| | 291 | "Somebody ----s something with something", |
| | 292 | "Somebody ----s INFINITIVE", |
| | 293 | "Somebody ----s VERB-ing", |
| | 294 | "It ----s that CLAUSE", |
| | 295 | "Something ----s INFINITIVE" |
| | 296 | ] |
| | 297 | |
| | 298 | |
| | 299 | end # module Constants |
| | 300 | |
| | 301 | # Make the constants available under the WordNet namespace, too. |
| | 302 | include Constants |