-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
202 additions
and
214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
// SPDX-License-Identifier: AGPL-3.0-only | ||
pragma solidity ^0.8.0; | ||
|
||
import "../munged-fifo/DoubleLinkedList.sol"; | ||
|
||
contract MockDllFifo { | ||
using DoubleLinkedList for DoubleLinkedList.List; | ||
|
||
// VERIFICATION INTERFACE | ||
|
||
DoubleLinkedList.List public dll; | ||
|
||
uint256 public maxIterations; | ||
|
||
uint256 internal dummy_state_variable; | ||
|
||
function dummy_state_modifying_function() public { | ||
// to fix a CVL error when only one function is accessible | ||
dummy_state_variable = 1; | ||
} | ||
|
||
function getValueOf(address _id) public view returns (uint256) { | ||
return dll.getValueOf(_id); | ||
} | ||
|
||
function getHead() public view returns (address) { | ||
return dll.getHead(); | ||
} | ||
|
||
function getTail() public view returns (address) { | ||
return dll.getTail(); | ||
} | ||
|
||
function getNext(address _id) public view returns (address) { | ||
return dll.getNext(_id); | ||
} | ||
|
||
function getPrev(address _id) public view returns (address) { | ||
return dll.getPrev(_id); | ||
} | ||
|
||
function remove(address _id) public { | ||
dll.remove(_id); | ||
} | ||
|
||
function insertSorted(address _id, uint256 _value, uint256 _maxIterations) public { | ||
dll.insertSorted(_id, _value, _maxIterations); | ||
} | ||
|
||
// SPECIFICATION HELPERS | ||
|
||
function getInsertedAfter() public view returns (address) { | ||
return dll.insertedAfter; | ||
} | ||
|
||
function getInsertedBefore() public view returns (address) { | ||
return dll.insertedBefore; | ||
} | ||
|
||
function getLength() public view returns (uint256) { | ||
uint256 len; | ||
for (address current = getHead(); current != address(0); current = getNext(current)) { | ||
len++; | ||
} | ||
return len; | ||
} | ||
|
||
function linkBetween(address _start, address _end) internal view returns (bool, address) { | ||
if (_start == _end) return (true, address(0)); | ||
for (uint256 maxIter = getLength(); maxIter > 0; maxIter--) { | ||
address next = getNext(_start); | ||
if (next == _end) return (true, _start); | ||
_start = next; | ||
} | ||
return (false, address(0)); | ||
} | ||
|
||
function isForwardLinkedBetween(address _start, address _end) public view returns (bool ret) { | ||
(ret,) = linkBetween(_start, _end); | ||
} | ||
|
||
function getPreceding(address _end) public view returns (address last) { | ||
(, last) = linkBetween(getHead(), _end); | ||
} | ||
|
||
function greaterThanUpTo(uint256 _value, address _to, uint256 _maxIter) public view returns (bool) { | ||
address from = getHead(); | ||
for (; _maxIter > 0; _maxIter--) { | ||
if (from == _to) return true; | ||
if (getValueOf(from) < _value) return false; | ||
from = getNext(from); | ||
} | ||
return true; | ||
} | ||
|
||
function lenUpTo(address _to) public view returns (uint256) { | ||
uint256 maxIter = getLength(); | ||
address from = getHead(); | ||
for (; maxIter > 0; maxIter--) { | ||
if (from == _to) break; | ||
from = getNext(from); | ||
} | ||
return getLength() - maxIter; | ||
} | ||
} |
Oops, something went wrong.