HElib icon indicating copy to clipboard operation
HElib copied to clipboard

[Bug] SEGV occurs in parameter initialization behaviour.

Open Wowblk opened this issue 4 months ago • 1 comments

I found a bug that causes SEGV in CKKS mode. The MWE is as follows:

#include <helib/helib.h>

using namespace std;
using namespace helib;

Context context = ContextBuilder<CKKS>()
.m(1024)
.precision(20)
.scale(4)
.bits(150)
.c(2)
.build();


int main(int argc, char* argv[])
{
    return 0;
}

Wowblk avatar Sep 11 '25 19:09 Wowblk

Image

Wowblk avatar Sep 11 '25 19:09 Wowblk