Skip to content

Commit 507ceff

Browse files
fabergahamishunJack L CrawfordEnrico SteffinlongoVictor J. Shoup
authored
V1.0.2 Release Update (#366)
* V1.0.2 Release Update - Source code contribution policy - HElib now builds with compiler pedantic flags - Consistent C++ format style adopted - Improved sampling functions - Bug fixes Co-Authored-By: Hamish Hunt <hamishun@uk.ibm.com> Co-Authored-By: Jack L Crawford <Jack.Crawford@ibm.com> Co-Authored-By: Enrico Steffinlongo <Enrico.Steffinlongo@ibm.com> Co-Authored-By: Victor J. Shoup <vjshoup@us.ibm.com>
1 parent 5f97813 commit 507ceff

File tree

207 files changed

+18006
-15347
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

207 files changed

+18006
-15347
lines changed

.clang-format

+4
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,8 @@ SortIncludes: false # Changed from true - TRY to make it true, might not work
1111
SortUsingDeclarations: false # Changed from true - TRY to make it true, might not work
1212
PointerAlignment: Left # Changed from Right
1313
BreakBeforeBraces: Mozilla # Changed to break after class/struct/function/..., but not after statement (if/while/for)
14+
PenaltyReturnTypeOnItsOwnLine: 1000 # Changed from 60 to avoid break after return type
15+
AllowAllArgumentsOnNextLine: false # Changed to avoid all call arguments on next line
16+
AllowAllParametersOfDeclarationOnNextLine: false # Changed to avoid all function parameters on next line
17+
#Standard: c++14 # This should validate the input to c++14 standard, but it is not supported in clang-9. For future use.
1418
...

.gitignore

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
gh-pages/
22
build/
33

4+
__pycache__/
5+
6+
**.log
7+
**.sk
8+
**.pk
9+
**.out
10+
**.ptxt
11+
**.ctxt
12+
413
src/fhe.a
514
src/*.o
615
src/*_x
@@ -11,9 +20,6 @@ src/makedep.d
1120
src/*_x.dSYM
1221
src/*.sh
1322
src/*.bin
14-
src/*.txt
15-
src/misc/*.bin
16-
src/misc/*.txt
1723

1824
**.bak
1925
**.swp
@@ -25,4 +31,4 @@ src/misc/*.txt
2531
!src/misc/iotest_binBE.bin
2632
!src/misc/iotest_binLE.bin
2733
/html/
28-
/latex/
34+
/latex/

0 commit comments

Comments
 (0)