File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed
Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.35.0 - TBD
4+
5+ ### Enhancements
6+ - Added ` InstitutionalPrioritization ` variant to ` MatchingAlgorithm `
7+
38## 0.34.0 - 2025-04-22
49
510### Enhancements
Original file line number Diff line number Diff line change @@ -208,6 +208,7 @@ enum MatchAlgorithm : char {
208208 ThresholdProRataLmm = ' Q' ,
209209 EurodollarFutures = ' Y' ,
210210 TimeProRata = ' P' ,
211+ InstitutionalPrioritization = ' V' ,
211212};
212213} // namespace match_algorithm
213214using match_algorithm::MatchAlgorithm;
Original file line number Diff line number Diff line change @@ -433,6 +433,9 @@ const char* ToString(MatchAlgorithm match_algorithm) {
433433 case match_algorithm::TimeProRata: {
434434 return " TimeProRata" ;
435435 }
436+ case match_algorithm::InstitutionalPrioritization: {
437+ return " InstitutionalPrioritization" ;
438+ }
436439 default : {
437440 return " Unknown" ;
438441 }
You can’t perform that action at this time.
0 commit comments