I am trying to use Charniak Parser (not reranker) to parse a sentence. I mean I have a sentence like this:
It is good to meet you.
And I need it to be parsed by Charniak (I insist on using Charniak parser, because after that I am going to use LTH system and LTH works based on Charniak Parser).
So, the result would be something like:
(s (XP(PRP I) (V is) ....)
However, when I try to run "make" command for Charinak Parser, I face these errors:
BChartsm.c LeftRightGotIter does not name a type
BChartsm.c in member function double Bchart::pHypgt(const std::string&, int)
BChartsm.c strpbrk was not declared in this scope
BChartsm.c in member function float Bchart::coputeTgT(int,int)
BChartsm.c globalGi was not declared in this scope
I tried to use a patch developed by Madnani, but it did not work for me. Also I tried to use this solution, but I couldn't understand the last part. I ran all the sudo dpkg ...
codes, but after that I didn't understand what I should do.
Meanwhile, I would say that I'm using Ubuntu 11.04 and my OS is a 64bit one.
Can anyone explain to me how I can solve the problems?