Skip to content

Commit

Permalink
Fixes in docs and emap (#625)
Browse files Browse the repository at this point in the history
* Fix in assertion and docs dependencies
  • Loading branch information
aletempiac authored Oct 13, 2023
1 parent b35056c commit d0fddde
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = ['sphinx.ext.mathjax', 'sphinx.ext.viewcode', 'breathe']
extensions = ['sphinx.ext.mathjax', 'sphinx.ext.viewcode', 'breathe', 'sphinx_rtd_theme']

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
Expand Down
2 changes: 1 addition & 1 deletion include/mockturtle/algorithms/experimental/emap.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3882,8 +3882,8 @@ class emap_impl
/* add the optional other match if used */
if ( !node_data.same_match && node_data.map_refs[phase] > 0 )
{
assert( !ps.map_multioutput || !node_data.multioutput_match[phase] );
create_lut_for_gate2( res, old2new, index, phase, genlib_to_cell );
assert( ps.map_multioutput && !node_data.multioutput_match[phase] );
}
}

Expand Down

0 comments on commit d0fddde

Please sign in to comment.