소스 검색

ciphertext_docs.h

Rener Oliveira 2 년 전
부모
커밋
73f4d8534e
1개의 변경된 파일19개의 추가작업 그리고 0개의 파일을 삭제
  1. 19 0
      include/docstrings/ciphertext_docs.h

+ 19 - 0
include/docstrings/ciphertext_docs.h

@@ -0,0 +1,19 @@
+#ifndef CIPHERTEXT_DOCSTRINGS_H
+#define CIPHERTEXT_DOCSTRINGS_H
+
+const char* ctx_GetLevel_docs = R"doc(
+    Get the number of scalings performed
+
+    Returns
+    -------
+        int: The level of the ciphertext.
+)doc";
+
+const char* ctx_SetLevel_docs = R"doc(
+    Set the number of scalings
+
+    Parameters
+    ----------
+        level (int): The level to set.
+)doc";
+#endif // CIPHERTEXT_DOCSTRINGS_H