Skip to content

Commit

Permalink
Fixing code based on reported issues
Browse files Browse the repository at this point in the history
  • Loading branch information
aletempiac committed Oct 17, 2024
1 parent 51dd6a0 commit ea3618c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/mockturtle/algorithms/emap.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ struct emap_params
* Structural uses pattern matching for fully-DSD cells,
* Hybrid combines the two.
*/
enum
enum matching_mode_t
{
boolean,
structural,
Expand Down
5 changes: 4 additions & 1 deletion include/mockturtle/utils/tech_library.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,9 @@ class tech_library
}
}

tech_library ( const tech_library& ) = delete;
tech_library& operator=( const tech_library& ) = delete;

/*! \brief Get the gates matching the function.
*
* Returns a list of gates that match the function represented
Expand Down Expand Up @@ -1163,7 +1166,7 @@ class tech_library
bool _use_supergates;

std::vector<gate> const _gates; /* collection of gates */
super_lib const& _supergates_spec; /* collection of supergates declarations */
super_lib const _supergates_spec; /* collection of supergates declarations */
tech_library_params const _ps;

std::vector<standard_cell> const _cells; /* collection of standard cells */
Expand Down

0 comments on commit ea3618c

Please sign in to comment.