Skip to content
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
2 changes: 1 addition & 1 deletion native/examples/4_bgv_basics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ void example_bgv_basics()
evaluator.mod_switch_to_next_inplace(x_8th);
cout << " + noise budget in x_8th (with modulus switching): " << decryptor.invariant_noise_budget(x_8th)
<< " bits" << endl;
decryptor.decrypt(x_4th, decrypted_result);
decryptor.decrypt(x_8th, decrypted_result);
batch_encoder.decode(decrypted_result, pod_result);
cout << " + result plaintext matrix ...... Correct." << endl;
print_matrix(pod_result, row_size);
Expand Down