MCPcopy Create free account
hub / github.com/Z3Prover/z3 / getStringSort

Method getStringSort

src/api/java/Context.java:178–184  ·  view source on GitHub ↗

Retrieves the String sort of the context.

()

Source from the content-addressed store, hash-verified

176 * Retrieves the String sort of the context.
177 **/
178 public SeqSort<CharSort> getStringSort()
179 {
180 if (m_stringSort == null) {
181 m_stringSort = mkStringSort();
182 }
183 return m_stringSort;
184 }
185
186 /**
187 * Create a new uninterpreted sort.

Callers

nothing calls this directly

Calls 1

mkStringSortMethod · 0.95

Tested by

no test coverage detected