diff --git a/lectures/lecture01/nano.cf b/lectures/lecture01/nano.cf new file mode 100644 index 0000000..774e97d --- /dev/null +++ b/lectures/lecture01/nano.cf @@ -0,0 +1,13 @@ +S ::= NP VP ; +VP ::= V NP ; +NP ::= Det CN ; +CN ::= A CN ; +CN ::= N ; +NP ::= Pron ; + +Det ::= "the" ; +A ::= "black" ; +N ::= "cat" ; +V ::= "sees" ; +Pron ::= "us" ; + diff --git a/lectures/lecture01/nanopar.cf b/lectures/lecture01/nanopar.cf new file mode 100644 index 0000000..4371425 --- /dev/null +++ b/lectures/lecture01/nanopar.cf @@ -0,0 +1,19 @@ +S ::= NP_nom_sg VP_sg ; +S ::= NP_nom_pl VP_pl ; +VP_sg ::= V_sg NP_acc ; +VP_pl ::= V_pl NP_acc ; +NP_nom_sg ::= Det CN ; +NP_acc ::= Det CN ; +CN ::= A CN ; +CN ::= N ; +NP_nom_pl ::= Pron_nom_pl ; +NP_acc ::= Pron_acc ; + +Det ::= "the" ; +A ::= "black" ; +N ::= "cat" ; +V_sg ::= "sees" ; +V_pl ::= "see" ; +Pron_nom_pl ::= "we" ; +Pron_acc ::= "us" ; +