mirror of
https://github.com/hneemann/Digital.git
synced 2025-09-08 12:25:22 -04:00
removed overseen log messages
This commit is contained in:
parent
b707517617
commit
2d2e82d4fe
@ -31,7 +31,6 @@ public class PathLenAnalyser {
|
||||
*/
|
||||
public PathLenAnalyser(ModelAnalyser modelAnalyser) throws BacktrackException, PinException {
|
||||
for (Signal s : modelAnalyser.getInputs()) {
|
||||
LOGGER.debug(s.getName());
|
||||
HashMap<ObservableValue, Integer> found = new HashMap<>();
|
||||
backtracking(s.getValue(), found, 0);
|
||||
}
|
||||
@ -46,7 +45,6 @@ public class PathLenAnalyser {
|
||||
maxDepth = depth;
|
||||
for (Observer o : value.getObservers()) {
|
||||
if ((o instanceof NodeInterface)) {
|
||||
LOGGER.debug(o.toString());
|
||||
ObservableValues outputs = ((NodeInterface) o).getOutputs();
|
||||
int de = depth;
|
||||
if (!(o instanceof NodeWithoutDelay)) de++;
|
||||
|
Loading…
x
Reference in New Issue
Block a user