/******************************************************************************* ** *A perms.h permutations Julius Jonusas ** James Mitchell ** Wilf A. Wilson ** Michael Young ** ** Copyright (C) 2014-15 - Julius Jonusas, James Mitchell, Wilf A. Wilson, ** Michael Young ** ** This file is free software, see the digraphs/LICENSE. **
*******************************************************************************/
staticinlinevoid copy_perm_coll(PermColl* coll1, PermColl const* coll2) {
DIGRAPHS_ASSERT(coll1->capacity >= coll2->size);
clear_perm_coll(coll1);
coll1->degree = coll2->degree; for (uint16_t i = 0; i < coll2->size; i++) {
add_perm_coll(coll1, coll2->perms[i]);
}
}
void free_perm_coll(PermColl* coll);
#endif// DIGRAPHS_SRC_PERMS_H_
Messung V0.5 in Prozent
¤ Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.0.27Bemerkung:
(vorverarbeitet am 2026-04-27)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.