Home | History | Annotate | Download | only in fst

Lines Matching refs:comp_props

97   uint64 comp_props = fst_props & kBinaryProperties;
106 SccVisitor<Arc> scc_visitor(&comp_props);
112 comp_props |= kAcceptor | kNoEpsilons | kNoIEpsilons | kNoOEpsilons |
115 comp_props |= kIDeterministic;
117 comp_props |= kODeterministic;
142 comp_props |= kNonIDeterministic;
143 comp_props &= ~kIDeterministic;
146 comp_props |= kNonODeterministic;
147 comp_props &= ~kODeterministic;
150 comp_props |= kNotAcceptor;
151 comp_props &= ~kAcceptor;
154 comp_props |= kEpsilons;
155 comp_props &= ~kNoEpsilons;
158 comp_props |= kIEpsilons;
159 comp_props &= ~kNoIEpsilons;
162 comp_props |= kOEpsilons;
163 comp_props &= ~kNoOEpsilons;
167 comp_props |= kNotILabelSorted;
168 comp_props &= ~kILabelSorted;
171 comp_props |= kNotOLabelSorted;
172 comp_props &= ~kOLabelSorted;
176 comp_props |= kWeighted;
177 comp_props &= ~kUnweighted;
180 comp_props |= kNotTopSorted;
181 comp_props &= ~kTopSorted;
184 comp_props |= kNotString;
185 comp_props &= ~kString;
196 comp_props |= kNotString;
197 comp_props &= ~kString;
204 comp_props |= kWeighted;
205 comp_props &= ~kUnweighted;
210 comp_props |= kNotString;
211 comp_props &= ~kString;
220 comp_props |= kNotString;
221 comp_props &= ~kString;
225 *known = KnownProperties(comp_props);
226 return comp_props;