Skip to content

Commit

Permalink
fixed bug in is_X in ieee1164
Browse files Browse the repository at this point in the history
  • Loading branch information
hellow554 committed Nov 27, 2018
1 parent 6894ae8 commit 76a351a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/logicbit/ieee1164.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ impl Ieee1164 {
}

pub fn is_X(self) -> bool {
self == _X || self == _U || self == _Z || self == _W || self == _D
self == _X
}

pub fn is_0(self) -> bool {
Expand Down

0 comments on commit 76a351a

Please sign in to comment.