Skip to content

Commit

Permalink
Removed more prints
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulKlint committed Oct 20, 2024
1 parent a0c674b commit 52a53ab
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,13 +204,16 @@ bool isCompatibleBinary(TModel lib, set[str] otherImportsAndExtends, ModuleStatu
for(m <- otherImportsAndExtends){
<found, tm, ms> = getTModelForModule(m, ms);
if(found){
//println("<m>:"); iprintln(domain(tm.logical2physical));
requires += {<m , l> | l <- domain(tm.logical2physical), m := getModuleFromLogical(l) };
}
}

println("isCompatibleBinary, unsatisfied: <requires - provides>");
return isEmpty(requires - provides);
if(isEmpty(requires - provides)){
return true;
} else {
println("isCompatibleBinary, unsatisfied: <requires - provides>");
return false;
}
}

tuple[ModuleStatus, rel[str, PathRole, str]] getModulePathsAsStr(Module m, ModuleStatus ms){
Expand Down

0 comments on commit 52a53ab

Please sign in to comment.