You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The aim of #84 was to create generic network conversion functions, i.e. functions that, given a network of one type, would construct a network of a different type (if possible). We have the neet.boolean.conv.wt_to_logic function which serves this purpose for converting WTNetworks to LogicNetworks. We should have a function which goes the other direction as well logic_to_wt.
Proposed API
classConversionError(Exception):
pass
deflogic_to_wt(net):
pass
The text was updated successfully, but these errors were encountered:
The aim of #84 was to create generic network conversion functions, i.e. functions that, given a network of one type, would construct a network of a different type (if possible). We have the
neet.boolean.conv.wt_to_logic
function which serves this purpose for convertingWTNetwork
s toLogicNetwork
s. We should have a function which goes the other direction as welllogic_to_wt
.Proposed API
The text was updated successfully, but these errors were encountered: