Skip to content

Commit

Permalink
Bug fixes and workflow updates (#643)
Browse files Browse the repository at this point in the history
* Bug fixes in binding and cell views

* Updating workflows

* Removing GCC-13 workflow due to a known bug in Xcode
  • Loading branch information
aletempiac committed May 23, 2024
1 parent a534573 commit b7fe3a7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 20 deletions.
18 changes: 0 additions & 18 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,6 @@ on:
- master

jobs:
build-gcc10:
name: GNU GCC 10
runs-on: macOS-11

steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: Build mockturtle
run: |
mkdir build
cd build
cmake -DCMAKE_CXX_COMPILER=$(which g++-10) -DMOCKTURTLE_TEST=ON ..
make run_tests
- name: Run tests
run: |
cd build
./test/run_tests "~[quality]"
build-gcc11:
name: GNU GCC 11
runs-on: macOS-latest
Expand Down
2 changes: 1 addition & 1 deletion include/mockturtle/views/binding_view.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ class binding_view : public Ntk
}

private:
std::vector<gate> const _library;
std::vector<gate> _library;
node_map<uint32_t, Ntk, std::unordered_map<node, uint32_t>> _bindings;
}; /* binding_view */

Expand Down
2 changes: 1 addition & 1 deletion include/mockturtle/views/cell_view.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ class cell_view : public Ntk
}

private:
std::vector<standard_cell> const _library;
std::vector<standard_cell> _library;
node_map<uint32_t, Ntk, std::unordered_map<node, uint32_t>> _cells;
}; /* cell_view */

Expand Down

0 comments on commit b7fe3a7

Please sign in to comment.