mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-09 13:37:58 -05:00
Fix bugs in matrix multiplication with binary circuits.
This commit is contained in:
@@ -146,7 +146,7 @@ public:
|
||||
if (this != &res)
|
||||
res.get_regs().assign(this->get_regs().begin(),
|
||||
this->get_regs().begin()
|
||||
+ max(size_t(n_bits), this->get_regs().size()));
|
||||
+ min(size_t(n_bits), this->get_regs().size()));
|
||||
|
||||
res.resize_regs(n_bits);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user