yosys-master
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
SatHelper::ModelBlockInfo Struct Reference

Public Member Functions

bool operator< (const ModelBlockInfo &other) const
 

Data Fields

int timestep
 
int offset
 
int width
 
std::string description
 

Detailed Description

Definition at line 445 of file sat.cc.

Member Function Documentation

bool SatHelper::ModelBlockInfo::operator< ( const ModelBlockInfo other) const
inline

Definition at line 448 of file sat.cc.

448  {
449  if (timestep != other.timestep)
450  return timestep < other.timestep;
451  if (description != other.description)
452  return description < other.description;
453  if (offset != other.offset)
454  return offset < other.offset;
455  if (width != other.width)
456  return width < other.width;
457  return false;
458  }
std::string description
Definition: sat.cc:447

Field Documentation

std::string SatHelper::ModelBlockInfo::description

Definition at line 447 of file sat.cc.

int SatHelper::ModelBlockInfo::offset

Definition at line 446 of file sat.cc.

int SatHelper::ModelBlockInfo::timestep

Definition at line 446 of file sat.cc.

int SatHelper::ModelBlockInfo::width

Definition at line 446 of file sat.cc.


The documentation for this struct was generated from the following file: