| 376 | } |
| 377 | |
| 378 | void TenSEALContext::auto_rescale(bool status) { |
| 379 | uint8_t flag = uint8_t(status) << 1; |
| 380 | // switch it off |
| 381 | this->_auto_flags &= ~flag_auto_rescale; |
| 382 | // set it to status |
| 383 | this->_auto_flags |= flag; |
| 384 | } |
| 385 | |
| 386 | void TenSEALContext::auto_mod_switch(bool status) { |
| 387 | uint8_t flag = uint8_t(status) << 2; |
nothing calls this directly
no outgoing calls
no test coverage detected