Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Docs] Fix rotation param descriptions #328

Merged
merged 1 commit into from
May 4, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions native/src/seal/evaluator.h
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,7 @@ namespace seal
memory pool pointed to by the given MemoryPoolHandle.

@param[in] encrypted The ciphertext to rotate
@param[in] steps The number of steps to rotate (negative left, positive right)
@param[in] steps The number of steps to rotate (positive left, negative right)
@param[in] galois_keys The Galois keys
@param[in] pool The MemoryPoolHandle pointing to a valid memory pool
@throws std::logic_error if scheme is not scheme_type::bfv
Expand Down Expand Up @@ -965,7 +965,7 @@ namespace seal
allocations in the process are allocated from the memory pool pointed to by the given MemoryPoolHandle.

@param[in] encrypted The ciphertext to rotate
@param[in] steps The number of steps to rotate (negative left, positive right)
@param[in] steps The number of steps to rotate (positive left, negative right)
@param[in] galois_keys The Galois keys
@param[out] destination The ciphertext to overwrite with the rotated result
@param[in] pool The MemoryPoolHandle pointing to a valid memory pool
Expand Down Expand Up @@ -1064,7 +1064,7 @@ namespace seal
the given MemoryPoolHandle.

@param[in] encrypted The ciphertext to rotate
@param[in] steps The number of steps to rotate (negative left, positive right)
@param[in] steps The number of steps to rotate (positive left, negative right)
@param[in] galois_keys The Galois keys
@param[in] pool The MemoryPoolHandle pointing to a valid memory pool
@throws std::logic_error if scheme is not scheme_type::ckks
Expand Down Expand Up @@ -1099,7 +1099,7 @@ namespace seal
are allocated from the memory pool pointed to by the given MemoryPoolHandle.

@param[in] encrypted The ciphertext to rotate
@param[in] steps The number of steps to rotate (negative left, positive right)
@param[in] steps The number of steps to rotate (positive left, negative right)
@param[in] galois_keys The Galois keys
@param[out] destination The ciphertext to overwrite with the rotated result
@param[in] pool The MemoryPoolHandle pointing to a valid memory pool
Expand Down