-
Notifications
You must be signed in to change notification settings - Fork 52
Open
Description
QL 1.23 hard deprecated ActualActual with no explicit convention argument, but in RQuantLib we only soft deprecate Enum 2, by explicitly passing in the same default convention. Do we want to respect this deprecation in RQuantLib and force users to select enums 8-13. Similarly with Thirty360.
Currently it is
Lines 370 to 371 in 57846cb
| else if (n==2) | |
| return QuantLib::ActualActual(QuantLib::ActualActual::ISDA); // reasonable default for back compatibility |
Should we make it:
#if QL_HEX_VERSION < 0x012300f0
else if (n==2)
return QuantLib::ActualActual();
#endifI'm personally supportive of leaving things in RQuantLib as it is, ie only soft deprecate. But we should collectively determine how far we want to take the strategy of 'bug for bug, feature for feature' between RQuantLib and QuantLib.
Metadata
Metadata
Assignees
Labels
No labels