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

add google* to .gitignore #520

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ _build/
api/
doxyoutput/

third-party/

.ipynb_checkpoints

Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
HPDIC MOD
=========
* VS Code setup:
* On ChameleonCloud, if VS Code complains about missing header files, then open C/C++ configuration and set the compiler to '/usr/bin/g++-11'

OpenFHE - Open-Source Fully Homomorphic Encryption Library
=====================================

Expand Down
2 changes: 2 additions & 0 deletions src/pke/examples/depth-bfvrns.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -310,5 +310,7 @@ int main(int argc, char* argv[]) {
std::cout << "\nResult of 3 homomorphic multiplications: \n";
std::cout << plaintextDecMult123 << std::endl;

std::cout << "===HPDIC MOD===" << std::endl;

return 0;
}
4 changes: 4 additions & 0 deletions src/pke/examples/simple-integers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -134,5 +134,9 @@ int main() {
std::cout << "Right rotation of #1 by 1: " << plaintextRot3 << std::endl;
std::cout << "Right rotation of #1 by 2: " << plaintextRot4 << std::endl;

std::cout << std::endl;
std::cout << "===== HPDIC ===== " << std::endl;
std::cout << std::endl;

return 0;
}