pub type QuerySet<'a, T> = BTreeSet<(String, (String, T))>;
Expand description

QuerySet is the set of queries that are to be made to a set of labeled polynomials/equations p that have previously been committed to. Each element of a QuerySet is a (label, query) pair, where label is the label of a polynomial in p, and query is the field element that p[label] is to be queried at.

Added the third field: the point name.