Skip to content

Commit 40718e4

Browse files
authored
Merge pull request #306 from AdaWorldAPI/claude/pr-g4-verb-table-seed
feat(G4): verb_table tense modulation (Quirk CGEL grounded)
2 parents 0509658 + d29f971 commit 40718e4

2 files changed

Lines changed: 366 additions & 20 deletions

File tree

crates/lance-graph-contract/src/grammar/role_keys.rs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,15 @@ pub enum Tense {
231231
Imperative = 11,
232232
}
233233

234+
impl Tense {
235+
pub const ALL: [Self; 12] = [
236+
Self::Present, Self::Past, Self::Future,
237+
Self::PresentContinuous, Self::PastContinuous, Self::FutureContinuous,
238+
Self::Perfect, Self::Pluperfect, Self::FuturePerfect,
239+
Self::Habitual, Self::Potential, Self::Imperative,
240+
];
241+
}
242+
234243
const TENSE_START: usize = 9910;
235244
#[allow(dead_code)]
236245
const TENSE_END: usize = 9970;

0 commit comments

Comments
 (0)