Skip to content

Commit 8ae9f6a

Browse files
committed
Mark empty table cells with  .
PiperOrigin-RevId: 878456015
1 parent 880ab7a commit 8ae9f6a

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

docs/advanced_usage.md

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1056,7 +1056,7 @@ them (or the user can recognize the `kNoLabel` loop and skip them).
10561056
10571057
The special symbols referenced above behave as described in this table:
10581058
1059-
| Consumes no symbol | Consumes symbol
1059+
  | Consumes no symbol | Consumes symbol
10601060
------------ | ------------------ | ---------------
10611061
Matches all | ε | σ
10621062
Matches rest | φ | ρ
@@ -1235,33 +1235,33 @@ if false and neither is set if unknown.
12351235
Type | Name | Description
12361236
------------- | -------------------- | -----------
12371237
Acceptor | `kAcceptor` | Input and output label are equal for each arc
1238-
| `kNotAcceptor` | Input and output label are not equal for some arc
1238+
  | `kNotAcceptor` | Input and output label are not equal for some arc
12391239
Accessible | `kAccessible` | All states reachable from the initial state
1240-
| `kNotAccessible` | Not all states reachable from the initial state
1241-
| `kCoAccessible` | All states can reach a final state
1242-
| `kNotCoAccessible` | Not all states can reach a final state
1240+
  | `kNotAccessible` | Not all states reachable from the initial state
1241+
  | `kCoAccessible` | All states can reach a final state
1242+
  | `kNotCoAccessible` | Not all states can reach a final state
12431243
Cyclic | `kCyclic` | Has cycles
1244-
| `kAcyclic` | Has no cycles
1245-
| `kInitialCyclic` | Has cycles containing the initial state
1246-
| `KInitialAcyclic` | Has no cycles containing the initial state
1244+
  | `kAcyclic` | Has no cycles
1245+
  | `kInitialCyclic` | Has cycles containing the initial state
1246+
  | `KInitialAcyclic` | Has no cycles containing the initial state
12471247
Deterministic | `kIDeterministic` | Input labels are unique leaving each state
1248-
| `kNonIDeterministic` | Input labels are not unique leaving some state
1249-
| `kODeterministic` | Output labels are unique leaving each state
1250-
| `kNonODeterministic` | Output labels are not unique leaving some state
1248+
  | `kNonIDeterministic` | Input labels are not unique leaving some state
1249+
  | `kODeterministic` | Output labels are unique leaving each state
1250+
  | `kNonODeterministic` | Output labels are not unique leaving some state
12511251
Epsilons | `kEpsilons` | Has input/output epsilons
1252-
| `KNoEpsilons` | Has no input/output epsilons
1253-
| `kIEpsilons` | Has input epsilons
1254-
| `KNoIEpsilons` | Has no input epsilons
1255-
| `kOEpsilons` | Has output epsilons
1256-
| `KNoOEpsilons` | Has no output epsilons
1252+
  | `KNoEpsilons` | Has no input/output epsilons
1253+
  | `kIEpsilons` | Has input epsilons
1254+
  | `KNoIEpsilons` | Has no input epsilons
1255+
  | `kOEpsilons` | Has output epsilons
1256+
  | `KNoOEpsilons` | Has no output epsilons
12571257
Sorted | `kILabelSorted` | Input labels sorted for each state
1258-
| `kNotILabelSorted` | Input labels not sorted for each state
1259-
| `kOLabelSorted` | Output labels sorted for each state
1260-
| `kNotOLabelSorted` | Output labels not sorted for each state
1261-
| `kTopSorted` | States topologically sorted
1262-
| `kNotTopSorted` | States not topologically sorted
1258+
  | `kNotILabelSorted` | Input labels not sorted for each state
1259+
  | `kOLabelSorted` | Output labels sorted for each state
1260+
  | `kNotOLabelSorted` | Output labels not sorted for each state
1261+
  | `kTopSorted` | States topologically sorted
1262+
  | `kNotTopSorted` | States not topologically sorted
12631263
Weighted | `kWeighted` | Non-trivial arc or final weights
1264-
| `kNotWeighted` | Only trivial arc and final weights
1264+
  | `kNotWeighted` | Only trivial arc and final weights
12651265
12661266
The call `fst.Properties(mask, false)` returns the stored property bits set in
12671267
the mask bits; some properties may be unknown. it is a constant-time operation.
@@ -1610,7 +1610,7 @@ Real | `RealWeightTpl<T>` | $[0, \infty)$
16101610
SignedLog | `SignedLogWeightTpl<T>` | $\{-1,1\} \times [-\infty, \infty]$ | [$\oplus$signed_log](signed_log_plus.md) | $(\times,+)$ | $(1, \infty)$ | $(1, 0)$ | `T`: floating point | [`SignedLogWeightTpl`](https://www.openfst.org/doxygen/fst/html/classfst_1_1SignedLogWeightTpl.html)
16111611
SparsePower | `SparsePowerWeight<W>` | $W^n$ | $\oplus_{W^n}$ | $\otimes_{W^n}$ | $0_{W^n}$ | $1_{W^n}$ | `n`: arbitrary | [`SparsePowerWeight`](https://www.openfst.org/doxygen/fst/html/classfst_1_1SparsePowerWeight.html)
16121612
String | `StringWeight<L, STRING_LEFT>` | $L^* \cup \{\infty\}$ | longest com. prefix | $\cdot$ | $\infty$ | $\epsilon$ | `L`: signed integral | [`StringWeight`](https://www.openfst.org/doxygen/fst/html/classfst_1_1StringWeight.html)
1613-
| `StringWeight<L, STRING_RIGHT>` | $L^* \cup \{\infty\}$ | longest com. suffix | $\cdot$ | $\infty$ | $\epsilon$ | `L`: signed integral | [`StringWeight`](https://www.openfst.org/doxygen/fst/html/classfst_1_1StringWeight.html)
1613+
&nbsp; | `StringWeight<L, STRING_RIGHT>` | $L^* \cup \{\infty\}$ | longest com. suffix | $\cdot$ | $\infty$ | $\epsilon$ | `L`: signed integral | [`StringWeight`](https://www.openfst.org/doxygen/fst/html/classfst_1_1StringWeight.html)
16141614
Tropical | `TropicalWeightTpl<T>` | $[-\infty, \infty]$ | $\min$ | $+$ | $\infty$ | $0$ | `T`: floating point | [`TropicalWeightTpl`](https://www.openfst.org/doxygen/fst/html/classfst_1_1TropicalWeightTpl.html)
16151615
16161616
The following weight types have been defined in the OpenFst library in terms of

0 commit comments

Comments
 (0)