pub fn combine_table<G>(
    columns: &[&PolyComm<G>],
    column_combiner: G::ScalarField,
    table_id_combiner: G::ScalarField,
    table_id_vector: Option<&PolyComm<G>>,
    runtime_vector: Option<&PolyComm<G>>
) -> PolyComm<G>where
    G: CommitmentCurve,
Expand description

Same as combine_table_entry, but for an entire table. The function will panic if given an empty table (0 columns).

Panics

Will panic if columns is empty.