mirror of
https://github.com/hneemann/Digital.git
synced 2025-09-11 05:45:27 -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 {
|
public PathLenAnalyser(ModelAnalyser modelAnalyser) throws BacktrackException, PinException {
|
||||||
for (Signal s : modelAnalyser.getInputs()) {
|
for (Signal s : modelAnalyser.getInputs()) {
|
||||||
LOGGER.debug(s.getName());
|
|
||||||
HashMap<ObservableValue, Integer> found = new HashMap<>();
|
HashMap<ObservableValue, Integer> found = new HashMap<>();
|
||||||
backtracking(s.getValue(), found, 0);
|
backtracking(s.getValue(), found, 0);
|
||||||
}
|
}
|
||||||
@ -46,7 +45,6 @@ public class PathLenAnalyser {
|
|||||||
maxDepth = depth;
|
maxDepth = depth;
|
||||||
for (Observer o : value.getObservers()) {
|
for (Observer o : value.getObservers()) {
|
||||||
if ((o instanceof NodeInterface)) {
|
if ((o instanceof NodeInterface)) {
|
||||||
LOGGER.debug(o.toString());
|
|
||||||
ObservableValues outputs = ((NodeInterface) o).getOutputs();
|
ObservableValues outputs = ((NodeInterface) o).getOutputs();
|
||||||
int de = depth;
|
int de = depth;
|
||||||
if (!(o instanceof NodeWithoutDelay)) de++;
|
if (!(o instanceof NodeWithoutDelay)) de++;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user