summary refs log tree commit diff stats
path: root/lib/adjective.cpp
blob: ba8254a7f30d3c26bbd52b3275914a6cb913fea7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#include "verbly.h"

namespace verbly {
  
  adjective::adjective()
  {
    
  }
  
  adjective::adjective(const data& _data, int _id) : word(_data, _id)
  {
    
  }
  
  std::string adjective::base_form() const
  {
    assert(_valid == true);
    
    return _base_form;
  }
  
  std::string adjective::comparative_form() const
  {
    assert(_valid == true);
    
    return _comparative_form;
  }
  
  std::string adjective::superlative_form() const
  {
    assert(_valid == true);
    
    return _superlative_form;
  }
  
  adjective::positioning adjective::position() const
  {
    assert(_valid == true);
    
    return _position;
  }
  
  bool adjective::has_comparative_form() const
  {
    assert(_valid == true);
    
    return !_comparative_form.empty();
  }
  
  bool adjective::has_superlative_form() const
  {
    assert(_valid == true);
    
    return !_superlative_form.empty();
  }
  
  bool adjective::has_position() const
  {
    assert(_valid == true);
    
    return _position != adjective::positioning::undefined;
  }
  
  adjective_query adjective::antonyms() const
  {
    assert(_valid == true);
    
    return _data->adjectives().antonym_of(*this);
  }
  
  adjective_query adjective::synonyms() const
  {
    assert(_valid == true);
    
    return _data->adjectives().synonym_of(*this);
  }
  
  adjective_query adjective::generalizations() const
  {
    assert(_valid == true);
    
    return _data->adjectives().generalization_of(*this);
  }
  
  adjective_query adjective::specifications() const
  {
    assert(_valid == true);
    
    return _data->adjectives().specification_of(*this);
  }
  
  noun_query adjective::anti_pertainyms() const
  {
    assert(_valid == true);
    
    return _data->nouns().anti_pertainym_of(*this);
  }
  
  adverb_query adjective::mannernyms() const
  {
    assert(_valid == true);
    
    return _data->adverbs().mannernym_of(*this);
  }
  
  noun_query adjective::attributes() const
  {
    assert(_valid == true);
    
    return _data->nouns().attribute_of(*this);
  }

};