Advertisement
logicmoo

Untitled

Sep 19th, 2014
492
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. clex_noun(Noun,RootNoun,Type,SG_OR_PL, mass):- clex_mass_noun(Noun,RootNoun,Type),member(SG_OR_PL,[sg,pl]).
  2. clex_noun(Noun,RootNoun,Type,SG, count):-clex_noun0(Noun,RootNoun,Type,SG),NOT(clex_mass_noun(Noun,_,_)).
  3. clex_noun(Noun,RootNoun,unknown,SG, count):-clex_noun1(Noun,RootNoun,SG),NOT(clex_noun0(Noun,RootNoun,_,SG)),NOT(clex_mass_noun(Noun,_,_)).
  4.    clex_noun0(Noun,RootNoun,Type,sg):- noun_sg(Noun, RootNoun, Type).
  5.    clex_noun0(Noun,RootNoun,Type,pl):- noun_pl(Noun, RootNoun, Type).
  6.    clex_noun1(Noun,RootNoun,sg):- noun_plu_db(Noun,RootNoun).
  7.    clex_noun1(Noun,RootNoun,pl):- noun_sin_db(Noun,RootNoun).
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement