Skip to content

Commit 0452634

Browse files
authored
Version 5.1.1 (#10)
1 parent 27bfb70 commit 0452634

File tree

12 files changed

+42
-803
lines changed

12 files changed

+42
-803
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
cmake_minimum_required( VERSION 3.14 )
1818

19-
project( scl VERSION 5.1.0 DESCRIPTION "Secure Computation Library" )
19+
project( scl VERSION 5.1.1 DESCRIPTION "Secure Computation Library" )
2020

2121
if(NOT CMAKE_BUILD_TYPE)
2222
set(CMAKE_BUILD_TYPE Release)

RELEASE.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
5.1.1: Bug fixes and simplifications
2+
- Simplifed the NextToRun logic because a greedy strategy too often results in
3+
rollbacks.
4+
- Fixed a bug in the Rollback logic where WriteOps weren't rolled back
5+
correctly.
6+
17
5.1: Vec-Mat multiplication
28
- Add a Vec Mat to Vec multiplication function to Mat
39
- Minor refactoring of test_mat.cc

include/scl/net/discovery/client.h

Lines changed: 0 additions & 86 deletions
This file was deleted.

include/scl/net/discovery/discovery.h

Lines changed: 0 additions & 77 deletions
This file was deleted.

include/scl/net/discovery/server.h

Lines changed: 0 additions & 101 deletions
This file was deleted.

include/scl/simulation/context.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ class SimulationContext {
215215
State mState = State::COMMIT;
216216

217217
std::map<ChannelId, std::vector<WriteOp>> mWrites;
218-
std::vector<std::size_t> mWritesIndices;
218+
std::map<ChannelId, std::vector<WriteOp>> mWritesBackup;
219219

220220
util::Time::TimePoint mCheckpoint;
221221

src/scl/net/discovery/client.cc

Lines changed: 0 additions & 87 deletions
This file was deleted.

0 commit comments

Comments
 (0)