ciphertext_docs.h 401 B

12345678910111213141516171819
  1. #ifndef CIPHERTEXT_DOCSTRINGS_H
  2. #define CIPHERTEXT_DOCSTRINGS_H
  3. const char* ctx_GetLevel_docs = R"doc(
  4. Get the number of scalings performed
  5. Returns
  6. -------
  7. int: The level of the ciphertext.
  8. )doc";
  9. const char* ctx_SetLevel_docs = R"doc(
  10. Set the number of scalings
  11. Parameters
  12. ----------
  13. level (int): The level to set.
  14. )doc";
  15. #endif // CIPHERTEXT_DOCSTRINGS_H