3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-23 17:15:33 +00:00

Added techmap CONSTMAP feature

This commit is contained in:
Clifford Wolf 2014-07-30 22:04:30 +02:00
parent 7daad40ca4
commit 2541489105
3 changed files with 126 additions and 12 deletions

View file

@ -278,6 +278,9 @@ namespace RTLIL
result.push_back(it.second);
return result;
}
std::set<T> to_set() const { return *this; }
std::vector<T> to_vector() const { return *this; }
};
};