Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Losing Don't cares in G1Eager in Transduction method #9

Open
MyskYko opened this issue Jun 28, 2020 · 0 comments
Open

Losing Don't cares in G1Eager in Transduction method #9

MyskYko opened this issue Jun 28, 2020 · 0 comments

Comments

@MyskYko
Copy link
Owner

MyskYko commented Jun 28, 2020

CalcG( fanin ) and CspfFICone( fanin ) should be added.

    void G1Eager( int fanin, int fanout )
    {
      if ( nVerbose > 2 )
	{
	  std::cout << "\tEager reduce with a connection from gate" << fanin << " to gate" << fanout << std::endl;
	}
      int wire = CountWire();
      CspfFICone( fanout );
      if ( wire == CountWire() )
	{
	  Disconnect( fanin, fanout );
	  CspfFICone( fanout );
	  CalcG( fanin ); // added
	  CspfFICone( fanin ); // added
	  return;
	}
      Cspf();
    }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant