Closed MSSRPRAD closed 11 months ago
I updated meters.tsv
to store yati as the |
character. But, it's true that yati is not modeled or used anywhere.
Storing it as an offset seems like the right approach (good insight!). Maybe instead of:
weights: Vec<Vec<PatternWeight>>
we can have:
padas: Vec<Pada>
struct Pada {
weights: Vec<PatternWeight>,
yati: Vec<usize>
}
(As an aside -- I know PatternWeight
is clunky. I'm waiting for the program to mature more before deciding what to do with it.)
Currently we don't capture this information neither in our data, data structure nor in the code.
Either we can further break down the scheme from a
Vec<Vec<>>
to aVec<Vec<Vec<>>>
or we can store it as seperate offsets.