mirror of
https://github.com/verilator/verilator.git
synced 2026-09-07 18:06:07 +02:00
This commit is contained in:
@@ -722,8 +722,8 @@ void VlRandomizer::clearAll() {
|
||||
|
||||
void VlRandomizer::markRandc(const char* name) { m_randcVarNames.insert(name); }
|
||||
|
||||
void VlRandomizer::solveBefore(const char* beforeName, const char* afterName) {
|
||||
m_solveBefore.emplace_back(std::string(beforeName), std::string(afterName));
|
||||
void VlRandomizer::solveBefore(const std::string& beforeName, const std::string& afterName) {
|
||||
m_solveBefore.emplace_back(beforeName, afterName);
|
||||
}
|
||||
|
||||
bool VlRandomizer::nextPhased(VlRNG& rngr) {
|
||||
|
||||
Reference in New Issue
Block a user