MCPcopy Create free account
hub / github.com/Gecode/gecode / SymbolEntry

Class SymbolEntry

gecode/flatzinc/parser.hh:106–114  ·  view source on GitHub ↗

Entries in the symbol table

Source from the content-addressed store, hash-verified

104
105 /// Entries in the symbol table
106 class SymbolEntry {
107 public:
108 SymbolType t; //< Type of entry
109 int i; //< Value of entry or array start index
110 /// Default constructor
111 SymbolEntry(void) {}
112 /// Constructor
113 SymbolEntry(SymbolType t0, int i0) : t(t0), i(i0) {}
114 };
115
116 /// Construct integer variable entry
117 forceinline SymbolEntry se_iv(int i) {

Callers 15

SymbolEntry se_ivFunction · 0.85
SymbolEntry se_bvFunction · 0.85
SymbolEntry se_fvFunction · 0.85
SymbolEntry se_svFunction · 0.85
SymbolEntry se_ivaFunction · 0.85
SymbolEntry se_bvaFunction · 0.85
SymbolEntry se_fvaFunction · 0.85
SymbolEntry se_svaFunction · 0.85
SymbolEntry se_iFunction · 0.85
SymbolEntry se_bFunction · 0.85
SymbolEntry se_sFunction · 0.85
SymbolEntry se_fFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected