Hello,
I am trying to use the following method in an application: FHECKKSRNS::EvalLinearTransform
(link: https://github.com/openfheorg/openfhe-development/blob/v1.3.1/src/pke/lib/scheme/ckksrns/ckksrns-fhe.cpp#L1611)
However, I am having trouble with it as it appears like nothing in the FHECKKSRNS type is exposed on any public CryptoContext<DCRTPoly> interface.
I have tried static_pointer_cast/dynamic_cast approaches on both the context and scheme pointers, and downcasting the scheme object itself but nothing worked so far.
Could you advise the recommended way to invoke EvalLinearTransform from user code?
Thanks!