public English1AdjectiveIdentifier (DefaultGram adjective, IWordIdCounter counter) : base (counter)
		{

			m_gram = adjective;

			m_adjectives = new List<string> ();
		
		}
		public English1AdverbIdentifier  (DefaultGram adverb, IWordIdCounter counter) : base (counter)
		{

			m_gram = adverb;

			m_adverbs = new List<string> ();

		}
Beispiel #3
0
        public English1VerbIdentifier(DefaultGram verb, IWordIdCounter counter) : base(counter)
        {
            m_verb            = verb;
            m_verbIdentifiers = new string[] { "v.t.", "v.i.", "v." };

            m_trackedWords   = new List <string> [26];
            m_untrackedWords = new List <String> ();

            for (int i = 0; i < 26; i++)
            {
                m_trackedWords [i] = new List <string> ();
            }
        }
		public English1VerbIdentifier (DefaultGram verb, IWordIdCounter counter) : base(counter)
		{
			m_verb = verb;
			m_verbIdentifiers = new string[] { "v.t.", "v.i.", "v." };

			m_trackedWords = new List<string>[26];
			m_untrackedWords = new List<String> ();

			for (int i = 0; i < 26; i++) {

				m_trackedWords [i] = new List<string> ();

			}
		}
 public English1GrammarFactory(GrammarContainer grammar, IWordIdCounter counter)
 {
     m_grammar = grammar;
     m_counter = counter;
 }
Beispiel #6
0
 public BaseGrammarIdentifier(IWordIdCounter counter)
 {
     m_counter = counter;
 }
		public English1GrammarFactory (GrammarContainer grammar, IWordIdCounter counter)
		{
			m_grammar = grammar; 
			m_counter = counter;
		}
        public English1AdverbIdentifier(DefaultGram adverb, IWordIdCounter counter) : base(counter)
        {
            m_gram = adverb;

            m_adverbs = new List <string> ();
        }
		public BaseGrammarIdentifier (IWordIdCounter counter)
		{
			m_counter = counter;
		}
Beispiel #10
0
        public English1AdjectiveIdentifier(DefaultGram adjective, IWordIdCounter counter) : base(counter)
        {
            m_gram = adjective;

            m_adjectives = new List <string> ();
        }
		public English1NounIdentifier (DefaultGram nuon, IWordIdCounter counter) : base (counter)
		{
			m_noun = nuon;
			m_nuonIdentifiers =  new string[] { "n.", "n.pl." , "n.sing."};
		}
 public English1NounIdentifier(DefaultGram nuon, IWordIdCounter counter) : base(counter)
 {
     m_noun            = nuon;
     m_nuonIdentifiers = new string[] { "n.", "n.pl.", "n.sing." };
 }
		public GenericGrammarIdentifier (IList<DefaultGram> simpleGrammar, IWordIdCounter counter) : base (counter)
		{

			m_grammar = simpleGrammar;
		
		}
 public GenericGrammarIdentifier(IList <DefaultGram> simpleGrammar, IWordIdCounter counter) : base(counter)
 {
     m_grammar = simpleGrammar;
 }