We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5dcb3a commit ef339afCopy full SHA for ef339af
2 files changed
flake.nix
@@ -36,7 +36,7 @@
36
37
fuznet = pkgs.stdenv.mkDerivation {
38
pname = "fuznet";
39
- version = "0.3.0";
+ version = "0.3.1";
40
src = ./.;
41
42
nativeBuildInputs = with pkgs; [ cmake ];
src/netlist/netlist.cpp
@@ -167,7 +167,7 @@ void Netlist::buffer_unconnected_outputs() {
167
168
for (Net* net_ptr : logic_nets_without_sinks)
169
add_buffer(
170
- net_ptr, lib.get_random_buffer(net_ptr->net_type, NetType::LOGIC)
+ net_ptr, lib.get_random_buffer(net_ptr->net_type, NetType::EXT_OUT)
171
);
172
}
173
0 commit comments