branch: rosetta:main 「№62265」
Commited by: lyskov-ai
GitHub commit link: 「b1d9238086fa5dc6」
Difference from previous tested commit:  code diff
Commit date: 2026-06-16 14:59:17
linux.clang linux.gcc linux.srlz mac.clang
debug
release
unit
mac.clang.python38.PyRosetta.unit ubuntu.clang.cxx11thread.serialization.python38.PyRosetta.unit mpi mpi.serialization build.header build.levels build.ninja_debug m1.clang.python312.build.release beautification code_quality.cppcheck code_quality.merge_size serialization code_quality.submodule_regression integration.mpi integration.release_debug integration.tensorflow integration.thread integration.torch integration performance profile linux.clang.score linux.gcc.score mac.clang.score scripts.pyrosetta scripts.rosetta.parse scripts.rosetta.validate scripts.rosetta.verify util.apps windows.build.debug windows.build.release

Fix incorrect comparison logic in operator< / difference_from (#696) ## Summary Four independent classes had broken comparison logic that violated either the contract of \`operator<\` (strict weak ordering) or the intended semantics of \`difference_from\`. Each is a separate, surgical fix bundled into a single PR because they all share the same \"comparison-operator misuse\" theme. * **\`core/chemical/sdf/mol_util.cc\`** — \`BondData::operator<\` was \`(lower < other.lower) || (upper < other.upper)\`. This is not a strict weak ordering: for example, \`(5, 1)\` and \`(3, 7)\` each compare less than the other, breaking antisymmetry. \`BondData\` is held in \`std::set<BondData>\` (see \`parse_bond_type_data\`), so the broken ordering directly affects the set. Replaced with a proper lexicographic compare via \`std::tie\`. * **\`core/scoring/motif/motif_hash_stuff.cc\`** — \`ResPairMotif::operator<\` returned \`0 < memcmp(...)\`, which is true exactly when \`memcmp\` says *this > other*; the comparison was inverted. Switched to \`memcmp(...) < 0\` (matches \`MotifHit::operator<\` in the same file). * **\`core/io/StructFileReaderOptions.cc\`** — \`operator<\` used \`==\` instead of \`!=\` for the short-circuit \`return false\` lines. The intended pattern (used correctly by the parent \`StructFileRepOptions::operator<\` and by \`ImportPoseOptions::operator<\`) is \`if a < b return true; if a != b return false; // fall through\`. The \`==\` form returns false when members are equal, short-circuiting before the rest of the members are compared, *and* falls through when one member is greater. Fixed every \`==\` to \`!=\` and added the missing \`!=\` follow-up after \`glycam_pdb_format_\`. * **\`core/chemical/gasteiger/GasteigerAtomTypeData.cc\`** — \`difference_from\` short-circuited \`return Other\` when \`charge_ == OTHER.charge_ || element_type_ != ... || ...\`. The first clause is inverted: the function should return \`Other\` when fundamental properties *differ*, not when they match. The bug also made the lone-pair / s-orbital / p-orbital classification logic below this check unreachable for any two types with equal charge. Fixed \`==\` to \`!=\`.

...


branch: rosetta:main 「№62264」
Commited by: Rocco Moretti
GitHub commit link: 「8f55d1556a33b9d4」
Difference from previous tested commit:  code diff
Commit date: 2026-06-15 15:35:06
linux.clang linux.gcc linux.srlz mac.clang
debug
release
unit
m1.clang.python310.PyRosetta.unit m1.clang.python311.PyRosetta.unit m1.clang.python312.PyRosetta.unit m1.clang.python313.PyRosetta.unit m1.clang.python314.PyRosetta.unit m1.clang.python39.PyRosetta.unit mac.clang.python312.PyRosetta.unit mac.clang.python314.PyRosetta.unit mac.clang.python38.PyRosetta.unit mac.clang.python39.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-20.04.clang.python311.PyRosetta.unit ubuntu-20.04.clang.python312.PyRosetta.unit ubuntu-20.04.clang.python39.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-20.04.gcc.python314.PyRosetta.unit ubuntu-22.04.clang.python310.PyRosetta.unit ubuntu-22.04.clang.python311.PyRosetta.unit ubuntu-22.04.clang.python312.PyRosetta.unit ubuntu-22.04.clang.python314.PyRosetta.unit ubuntu-22.04.clang.python39.PyRosetta.unit ubuntu-22.04.gcc.cxx11thread.serialization.PyRosetta.unit ubuntu-22.04.gcc.python313.PyRosetta.unit ubuntu-22.04.gcc.python314.PyRosetta.unit ubuntu-22.04.gcc.python39.PyRosetta.unit ubuntu-24.04.clang.cxx11thread.serialization.PyRosetta.unit ubuntu-24.04.clang.python39.PyRosetta.unit ubuntu-24.04.gcc.python310.PyRosetta.unit ubuntu-24.04.gcc.python311.PyRosetta.unit ubuntu-24.04.gcc.python39.PyRosetta.unit ubuntu.clang.cxx11thread.serialization.python38.PyRosetta.unit ubuntu.clang.python310.PyRosetta.unit ubuntu.clang.python311.PyRosetta.unit ubuntu.clang.python312.PyRosetta.unit ubuntu.clang.python313.PyRosetta.unit ubuntu.gcc.python314.PyRosetta.unit ubuntu.gcc.python39.PyRosetta.unit build.clean.debug clang-10.clang.cxx11thread.mpi.serialization.tensorflow.build.debug gcc-10.gcc.build.debug gcc-10.gcc.cxx11thread.serialization.build.debug gcc-11.gcc.cxx11thread.serialization.build.debug gcc-9.gcc.build.debug gcc-9.gcc.cxx11thread.serialization.build.debug linux.clang.python39.build.debug mpi mpi.serialization linux.gcc.python310.build.debug linux.gcc.python311.build.debug linux.gcc.python39.build.debug m1.clang.build.debug m1.clang.python312.build.debug m1.clang.python313.build.debug m1.clang.python39.build.debug mac.clang.python313.build.debug ubuntu-20.04.gcc.build.debug ubuntu-22.04.clang.cxx11thread.serialization.build.debug ubuntu-24.04.clang.build.debug ubuntu-24.04.gcc.build.debug ubuntu-24.04.gcc.cxx11thread.serialization.build.debug ubuntu.clang.bcl.build.debug ubuntu.clang.cxx11thread.serialization.build.debug ubuntu.gcc.python311.build.debug ubuntu.gcc.python312.build.debug ubuntu.gcc.python39.build.debug build.header build.levels build.ninja_debug graphics gcc-10.gcc.build.release gcc-10.gcc.cxx11thread.serialization.build.release gcc-9.gcc.build.release m1.clang.build.release m1.clang.python310.build.release m1.clang.python313.build.release m1.clang.python314.build.release m1.clang.python39.build.release mac.clang.python312.build.release ubuntu-22.04.clang.cxx11thread.serialization.build.release ubuntu-22.04.gcc.cxx11thread.serialization.build.release ubuntu.clang.python311.build.release ubuntu.clang.python314.build.release ubuntu.gcc.python314.build.release ubuntu.gcc.python39.build.release beautification code_quality.clang_analysis code_quality.clang_tidy code_quality.cppcheck code_quality.merge_size serialization code_quality.submodule_regression integration.addsan integration.mpi integration.release_debug integration.tensorflow integration.thread integration.torch integration.tutorials integration.ubsan integration maintenance.documentation performance profile m1.clang.python312.release.PyRosetta.MinSizeRel m1.clang.python313.release.PyRosetta.MinSizeRel m1.clang.python38.release.PyRosetta.MinSizeRel m1.clang.python39.release.PyRosetta.MinSizeRel mac.clang.python311.release.PyRosetta.MinSizeRel mac.clang.python38.release.PyRosetta.MinSizeRel mac.clang.python39.release.PyRosetta.MinSizeRel ubuntu.clang.python311.release.PyRosetta.MinSizeRel m1.clang.python311.release.PyRosetta.Release m1.clang.python312.release.PyRosetta.Release m1.clang.python313.release.PyRosetta.Release m1.clang.python39.release.PyRosetta.Release mac.clang.python310.release.PyRosetta.Release mac.clang.python313.release.PyRosetta.Release mac.clang.python38.release.PyRosetta.Release mac.clang.python39.release.PyRosetta.Release ubuntu.clang.python310.release.PyRosetta.Release ubuntu.clang.python38.release.PyRosetta.Release release.source scientific.antibody_snugdock scientific.cofactor_binding_sites scientific.docking_ensemble scientific.docking scientific.fragments_picking scientific.glycan_dock scientific.ligand_scoring_ranking.debug scientific.ligand_scoring_ranking scientific.loop_modeling_kic_fragments_12res scientific.loop_modeling_ngk_12res scientific.mhc_epitope_energy.debug scientific.mhc_epitope_energy scientific.mp_dock scientific.mp_domain_assembly.debug scientific.mp_lipid_acc.debug scientific.mp_lipid_acc scientific.mp_relax.debug scientific.peptide_pnear_vs_ic50 scientific.relax_cartesian scientific.relax_fast_5iter scientific.relax_fast scientific.sewing scientific.stepwise_rna_favorites.debug linux.clang.score linux.gcc.score mac.clang.score scripts.pyrosetta scripts.rosetta.parse scripts.rosetta.validate scripts.rosetta.verify unit.addsan unit.release unit.ubsan gcc-10.gcc.cxx11thread.serialization.unit gcc-10.gcc.unit gcc-11.gcc.cxx11thread.serialization.unit gcc-11.gcc.unit gcc-9.gcc.cxx11thread.serialization.unit gcc-9.gcc.unit linux.clang.python310.unit linux.clang.python311.unit linux.clang.python39.unit linux.gcc.python311.unit linux.gcc.python312.unit m1.clang.cxx11thread.serialization.unit m1.clang.python310.unit m1.clang.python311.unit m1.clang.python313.unit m1.clang.python314.unit m1.clang.python39.unit mac.clang.python312.unit ubuntu-20.04.clang.python39.unit ubuntu-20.04.clang.unit ubuntu-22.04.clang.cxx11thread.serialization.unit ubuntu-22.04.clang.python39.unit ubuntu-22.04.clang.unit ubuntu-22.04.gcc.python39.unit ubuntu-24.04.gcc.cxx11thread.serialization.unit ubuntu.gcc.python310.unit ubuntu.gcc.python311.unit ubuntu.gcc.python312.unit ubuntu.gcc.python314.unit ubuntu.gcc.python39.unit ubuntu.gcc.unit util.apps windows.build.debug windows.build.release

Fix loading of ligands when three letter code matches NCAA (#480) When a ligand params file provided with `-extra_res_fa` has a three letter code which matches an NCAA three letter code from the database, that ligand ResidueType is never selected on PDB read-in, even if it's a much better match for the names in the PDB. The reason for this is that the PDB reader residue typer prioritizes patched polymeric terminus types (those with TERMINUS properties) for residues at the ends of chains, discarding the ligand types as a possibility before even encountering the name-based selection. This PR adjusts how the typer selects residues. Instead of having chain-terminal residues preferring terminus properties, actually look at the connection points, and look for residues which have/don't have the UPPER & LOWER connection points. (This is really what "is_lower_terminus" and "is_upper_terminus" in PoseFromSFRBuilder signifies: is this residue polymerically connected to the adjacent residue.)

...
Test: ubuntu.gcc.integration.addsan

Failed sub-tests (click for more details):
ligand_dock_ensemble
Test: linux.clang.tensorflow.integration.tensorflow

Failed sub-tests (click for more details):
database_md5
Test: linux.gcc.cxx11thread.integration.thread

Failed sub-tests (click for more details):
database_md5
Test: linux.clang.integration.tutorials

Failed sub-tests (click for more details):
input_and_output
Test: linux.clang.maintenance.documentation

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: ubuntu-20.04.clang.python36.scientific.mp_lipid_acc

 View log

Loading...

 View log in dialog  View log in log in separate window


branch: rosetta:main 「№62263」
Commited by: lyskov-ai
GitHub commit link: 「e79b82e864f2e920」
Difference from previous tested commit:  code diff
Commit date: 2026-06-15 11:34:09
linux.clang linux.gcc linux.srlz mac.clang
debug
release
unit
m1.clang.python38.PyRosetta.unit mac.clang.python38.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python313.PyRosetta.unit ubuntu.clang.cxx11thread.serialization.python38.PyRosetta.unit ubuntu.clang.python314.PyRosetta.unit ubuntu.gcc.python310.PyRosetta.unit alpine.gcc.build.debug gcc-11.gcc.build.debug linux.clang.python311.build.debug mpi mpi.serialization m1.clang.cxx11thread.serialization.build.debug m1.clang.python310.build.debug m1.clang.python311.build.debug m1.clang.python314.build.debug ubuntu-20.04.gcc.cxx11thread.serialization.build.debug ubuntu-24.04.clang.cxx11thread.serialization.build.debug ubuntu.clang.python310.build.debug ubuntu.clang.python313.build.debug ubuntu.gcc.python310.build.debug ubuntu.gcc.python313.build.debug ubuntu.gcc.python314.build.debug build.header build.levels build.ninja_debug gcc-9.gcc.cxx11thread.serialization.build.release m1.clang.cxx11thread.serialization.build.release m1.clang.python311.build.release ubuntu-24.04.gcc.build.release ubuntu-24.04.gcc.cxx11thread.serialization.build.release beautification code_quality.cppcheck code_quality.merge_size serialization code_quality.submodule_regression integration.addsan integration.mpi integration.release_debug integration.tensorflow integration.thread integration.torch integration performance profile m1.clang.python310.release.PyRosetta.MinSizeRel m1.clang.python311.release.PyRosetta.MinSizeRel m1.clang.python310.release.PyRosetta.Release m1.clang.python38.release.PyRosetta.Release ubuntu.clang.python39.release.PyRosetta.Release scientific.make_fragments linux.clang.score linux.gcc.score mac.clang.score scripts.pyrosetta scripts.rosetta.parse scripts.rosetta.validate scripts.rosetta.verify unit.release linux.gcc.python310.unit linux.gcc.python39.unit m1.clang.unit ubuntu-24.04.gcc.unit ubuntu.clang.python310.unit ubuntu.clang.unit ubuntu.gcc.python313.unit util.apps windows.build.debug windows.build.release

Fix off-by-one bugs in 1-indexed loops over pose residues (#695) ## Summary Replace \`i != end\` with \`i <= end\` (or \`i != size()\` with \`i <= size()\`) in several loops that iterate over 1-indexed residue ranges. With the old condition, the last residue (index == end) was silently skipped. * \`core/pack/task/PackerTask_.cc\`: pymol-style debug selection output omitted the last residue. * \`protocols/forge/components/BDR.cc\`: - the full-atom check used to gate \`switch_to_residue_type_set\` skipped the last residue, so a non-full-atom last residue could bypass conversion and later cause sidechain-restore mismatch (the precise failure the surrounding comment warns about). - the loop building the \`RestrictResidueToRepacking\` operation skipped the last residue, so a C-terminal residue outside \`new_positions\` was designed instead of repack-only. * \`protocols/fldsgn/BluePrintBDR.cc\`: same full-atom check bug as in \`BDR.cc\`. * \`protocols/denovo_design/components/StructureData.cc\`: \`compute_cutpoints\` skipped the last residue, dropping a \`CUTPOINT_LOWER\` variant on the C-terminal residue. * \`protocols/enzdes/BackboneSampler.cc\`: the user-requested number of backbone-Monte-Carlo trials was off by one (e.g. \`bb_moves_=1000\` actually ran 999 trials, in contradiction with the \"Running N trials...\" log line printed just above). These are all instances of the same pattern: a 1-indexed loop using \`!=\` against a one-past-the-last bound that was actually meant to be the last valid index. Each loop body uses the index directly to access pose data, so the fix is to switch the comparison to \`<=\`.



branch: rosetta:main 「№62262」
Commited by: lyskov-ai
GitHub commit link: 「a31d9d50e217e874」
Difference from previous tested commit:  code diff
Commit date: 2026-06-08 10:14:09
linux.clang linux.gcc linux.srlz mac.clang
debug
release
unit
PyRosetta.notebook gcc-9.gcc.python37.PyRosetta.unit m1.clang.python310.PyRosetta.unit m1.clang.python311.PyRosetta.unit m1.clang.python312.PyRosetta.unit m1.clang.python313.PyRosetta.unit m1.clang.python314.PyRosetta.unit m1.clang.python38.PyRosetta.unit m1.clang.python39.PyRosetta.unit mac.clang.python38.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-20.04.clang.python310.PyRosetta.unit ubuntu-20.04.clang.python311.PyRosetta.unit ubuntu-20.04.clang.python312.PyRosetta.unit ubuntu-20.04.clang.python313.PyRosetta.unit ubuntu-20.04.clang.python314.PyRosetta.unit ubuntu-20.04.clang.python39.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-20.04.gcc.python310.PyRosetta.unit ubuntu-20.04.gcc.python311.PyRosetta.unit ubuntu-20.04.gcc.python312.PyRosetta.unit ubuntu-20.04.gcc.python313.PyRosetta.unit ubuntu-20.04.gcc.python314.PyRosetta.unit ubuntu-20.04.gcc.python39.PyRosetta.unit ubuntu-22.04.clang.cxx11thread.serialization.PyRosetta.unit ubuntu-22.04.clang.python310.PyRosetta.unit ubuntu-22.04.clang.python311.PyRosetta.unit ubuntu-22.04.clang.python312.PyRosetta.unit ubuntu-22.04.clang.python313.PyRosetta.unit ubuntu-22.04.clang.python314.PyRosetta.unit ubuntu-22.04.clang.python39.PyRosetta.unit ubuntu-22.04.gcc.cxx11thread.serialization.PyRosetta.unit ubuntu-22.04.gcc.python310.PyRosetta.unit ubuntu-22.04.gcc.python311.PyRosetta.unit ubuntu-22.04.gcc.python312.PyRosetta.unit ubuntu-22.04.gcc.python313.PyRosetta.unit ubuntu-22.04.gcc.python314.PyRosetta.unit ubuntu-22.04.gcc.python39.PyRosetta.unit ubuntu-24.04.clang.cxx11thread.serialization.PyRosetta.unit ubuntu-24.04.clang.python310.PyRosetta.unit ubuntu-24.04.clang.python311.PyRosetta.unit ubuntu-24.04.clang.python312.PyRosetta.unit ubuntu-24.04.clang.python313.PyRosetta.unit ubuntu-24.04.clang.python314.PyRosetta.unit ubuntu-24.04.clang.python39.PyRosetta.unit ubuntu-24.04.gcc.cxx11thread.serialization.PyRosetta.unit ubuntu-24.04.gcc.python310.PyRosetta.unit ubuntu-24.04.gcc.python311.PyRosetta.unit ubuntu-24.04.gcc.python312.PyRosetta.unit ubuntu-24.04.gcc.python313.PyRosetta.unit ubuntu-24.04.gcc.python314.PyRosetta.unit ubuntu-24.04.gcc.python39.PyRosetta.unit ubuntu.clang.cxx11thread.serialization.python38.PyRosetta.unit ubuntu.clang.python310.PyRosetta.unit ubuntu.clang.python311.PyRosetta.unit ubuntu.clang.python312.PyRosetta.unit ubuntu.clang.python313.PyRosetta.unit ubuntu.clang.python314.PyRosetta.unit ubuntu.clang.python39.PyRosetta.unit ubuntu.gcc.python310.PyRosetta.unit ubuntu.gcc.python311.PyRosetta.unit ubuntu.gcc.python312.PyRosetta.unit ubuntu.gcc.python313.PyRosetta.unit ubuntu.gcc.python314.PyRosetta.unit ubuntu.gcc.python39.PyRosetta.unit build.clean.debug alpine.gcc.build.debug clang-10.clang.cxx11thread.mpi.serialization.tensorflow.build.debug gcc-10.gcc.build.debug gcc-10.gcc.cxx11thread.serialization.build.debug gcc-11.gcc.build.debug gcc-11.gcc.cxx11thread.serialization.build.debug gcc-9.gcc.build.debug gcc-9.gcc.cxx11thread.serialization.build.debug icc.icc.build.debug linux.clang.bcl.build.debug linux.clang.hdf5.build.debug mysql postgres linux.clang.python310.build.debug linux.clang.python311.build.debug linux.clang.python312.build.debug linux.clang.python39.build.debug linux.zeromq.debug linux.gcc.bcl.build.debug mpi mpi.serialization linux.gcc.python310.build.debug linux.gcc.python311.build.debug linux.gcc.python312.build.debug linux.gcc.python39.build.debug m1.clang.build.debug m1.clang.cxx11thread.serialization.build.debug m1.clang.python310.build.debug m1.clang.python311.build.debug m1.clang.python312.build.debug m1.clang.python313.build.debug m1.clang.python314.build.debug m1.clang.python39.build.debug ubuntu-20.04.clang.build.debug ubuntu-20.04.clang.cxx11thread.serialization.build.debug ubuntu-20.04.gcc.build.debug ubuntu-20.04.gcc.cxx11thread.serialization.build.debug ubuntu-22.04.clang.build.debug ubuntu-22.04.clang.cxx11thread.serialization.build.debug ubuntu-22.04.gcc.build.debug ubuntu-22.04.gcc.cxx11thread.serialization.build.debug ubuntu-24.04.clang.build.debug ubuntu-24.04.clang.cxx11thread.serialization.build.debug ubuntu-24.04.gcc.build.debug ubuntu-24.04.gcc.cxx11thread.serialization.build.debug ubuntu.clang.bcl.build.debug ubuntu.clang.build.debug ubuntu.clang.cxx11thread.serialization.build.debug ubuntu.clang.python310.build.debug ubuntu.clang.python311.build.debug ubuntu.clang.python312.build.debug ubuntu.clang.python313.build.debug ubuntu.clang.python314.build.debug ubuntu.clang.python39.build.debug ubuntu.gcc.bcl.build.debug ubuntu.gcc.build.debug ubuntu.gcc.cxx11thread.serialization.build.debug ubuntu.gcc.python310.build.debug ubuntu.gcc.python311.build.debug ubuntu.gcc.python312.build.debug ubuntu.gcc.python313.build.debug ubuntu.gcc.python314.build.debug ubuntu.gcc.python39.build.debug build.header build.levels build.ninja_debug gcc-10.gcc.build.release gcc-10.gcc.cxx11thread.serialization.build.release gcc-11.gcc.build.release gcc-11.gcc.cxx11thread.serialization.build.release gcc-9.gcc.build.release gcc-9.gcc.cxx11thread.serialization.build.release linux.clang.python310.build.release linux.clang.python311.build.release linux.clang.python312.build.release linux.clang.python39.build.release linux.gcc.python310.build.release linux.gcc.python311.build.release linux.gcc.python312.build.release linux.gcc.python39.build.release static m1.clang.build.release m1.clang.cxx11thread.serialization.build.release m1.clang.python310.build.release m1.clang.python311.build.release m1.clang.python312.build.release m1.clang.python313.build.release m1.clang.python314.build.release m1.clang.python39.build.release ubuntu-20.04.clang.build.release ubuntu-20.04.clang.cxx11thread.serialization.build.release ubuntu-20.04.gcc.build.release ubuntu-20.04.gcc.cxx11thread.serialization.build.release ubuntu-22.04.clang.build.release ubuntu-22.04.clang.cxx11thread.serialization.build.release ubuntu-22.04.gcc.build.release ubuntu-22.04.gcc.cxx11thread.serialization.build.release ubuntu-24.04.clang.build.release ubuntu-24.04.clang.cxx11thread.serialization.build.release ubuntu-24.04.gcc.build.release ubuntu-24.04.gcc.cxx11thread.serialization.build.release ubuntu.clang.build.release ubuntu.clang.cxx11thread.serialization.build.release ubuntu.clang.python310.build.release ubuntu.clang.python311.build.release ubuntu.clang.python312.build.release ubuntu.clang.python313.build.release ubuntu.clang.python314.build.release ubuntu.clang.python39.build.release ubuntu.gcc.build.release ubuntu.gcc.cxx11thread.serialization.build.release ubuntu.gcc.python310.build.release ubuntu.gcc.python311.build.release ubuntu.gcc.python312.build.release ubuntu.gcc.python313.build.release ubuntu.gcc.python314.build.release ubuntu.gcc.python39.build.release beautification code_quality.clang_analysis code_quality.clang_tidy code_quality.cppcheck code_quality.merge_size serialization code_quality.submodule_regression integration.addsan integration.mpi integration.release_debug integration.tensorflow integration.thread integration.torch integration.tutorials integration.ubsan integration.valgrind integration maintenance.documentation performance profile m1.clang.python310.release.PyRosetta.MinSizeRel m1.clang.python311.release.PyRosetta.MinSizeRel m1.clang.python312.release.PyRosetta.MinSizeRel m1.clang.python313.release.PyRosetta.MinSizeRel m1.clang.python38.release.PyRosetta.MinSizeRel m1.clang.python39.release.PyRosetta.MinSizeRel ubuntu.clang.python310.release.PyRosetta.MinSizeRel ubuntu.clang.python311.release.PyRosetta.MinSizeRel ubuntu.clang.python312.release.PyRosetta.MinSizeRel ubuntu.clang.python313.release.PyRosetta.MinSizeRel ubuntu.clang.python38.release.PyRosetta.MinSizeRel ubuntu.clang.python39.release.PyRosetta.MinSizeRel m1.clang.python310.release.PyRosetta.Release m1.clang.python311.release.PyRosetta.Release m1.clang.python312.release.PyRosetta.Release m1.clang.python313.release.PyRosetta.Release m1.clang.python38.release.PyRosetta.Release m1.clang.python39.release.PyRosetta.Release ubuntu.clang.python310.release.PyRosetta.Release ubuntu.clang.python311.release.PyRosetta.Release ubuntu.clang.python312.release.PyRosetta.Release ubuntu.clang.python313.release.PyRosetta.Release ubuntu.clang.python38.release.PyRosetta.Release ubuntu.clang.python39.release.PyRosetta.Release release.PyRosetta.conda.Release release.source scientific.antibody_grafting.debug scientific.antibody_grafting linux.clang.score linux.gcc.score mac.clang.score scripts.pyrosetta scripts.rosetta.parse scripts.rosetta.validate scripts.rosetta.verify unit.addsan linux.clang.unit.release linux.gcc.unit.release unit.ubsan unit.valgrind gcc-10.gcc.cxx11thread.serialization.unit gcc-10.gcc.unit gcc-11.gcc.cxx11thread.serialization.unit gcc-11.gcc.unit gcc-9.gcc.cxx11thread.serialization.unit gcc-9.gcc.unit linux.clang.python310.unit linux.clang.python311.unit linux.clang.python312.unit linux.clang.python39.unit linux.gcc.python310.unit linux.gcc.python311.unit linux.gcc.python312.unit linux.gcc.python39.unit m1.clang.cxx11thread.serialization.unit m1.clang.python310.unit m1.clang.python311.unit m1.clang.python312.unit m1.clang.python313.unit m1.clang.python314.unit m1.clang.python39.unit m1.clang.unit ubuntu-20.04.clang.cxx11thread.serialization.unit ubuntu-20.04.clang.python39.unit ubuntu-20.04.clang.unit ubuntu-20.04.gcc.cxx11thread.serialization.unit ubuntu-20.04.gcc.python39.unit ubuntu-20.04.gcc.unit ubuntu-22.04.clang.cxx11thread.serialization.unit ubuntu-22.04.clang.python39.unit ubuntu-22.04.clang.unit ubuntu-22.04.gcc.cxx11thread.serialization.unit ubuntu-22.04.gcc.python39.unit ubuntu-22.04.gcc.unit ubuntu-24.04.clang.cxx11thread.serialization.unit ubuntu-24.04.clang.unit ubuntu-24.04.gcc.cxx11thread.serialization.unit ubuntu-24.04.gcc.unit ubuntu.clang.cxx11thread.serialization.unit ubuntu.clang.python310.unit ubuntu.clang.python311.unit ubuntu.clang.python312.unit ubuntu.clang.python313.unit ubuntu.clang.python314.unit ubuntu.clang.python39.unit ubuntu.clang.unit ubuntu.gcc.cxx11thread.serialization.unit ubuntu.gcc.python310.unit ubuntu.gcc.python311.unit ubuntu.gcc.python312.unit ubuntu.gcc.python313.unit ubuntu.gcc.python314.unit ubuntu.gcc.python39.unit ubuntu.gcc.unit util.apps windows.build.debug windows.build.release

Apply Rule of Zero across remaining utility/ empty destructors (#694) ## Summary Bundle of small Rule-of-Zero / clarity fixes across `utility/` for classes not covered by any other open PR. All changes are observably no-ops at runtime (each destructor body either was empty or `= default`); the goal is to remove redundant declarations and document a deliberate non-trivial case. - **Remove empty `~Foo() {}`** where the implicit destructor is already correct (virtual is preserved via the base class when relevant): `Bound`, `Exception`, `ocstream`, `AutoKey`, `UserKey`. - **Convert `~Foo() {}` to `~Foo() = default;`** for polymorphic root classes (no virtual base destructor to inherit), so the destructor stays virtual: `Show`, `WidgetFactory`, `irstream`, `orstream`, `Key`, `Option`. - **Drop matching `= default` destructor pairs (.hh decl + .cc def)** for classes that inherit from `utility::VirtualBase`, which already supplies a `virtual ~VirtualBase() = default;`: `heap`, `subset_mapping`, `recent_history_queue`, `GeneralFileContents`, `GeneralFileContentsVector`, `Tag`. - **`utility/io/mpistream.hh`**: the destructor of `basic_mpi_streambuf` is **not** trivial — it calls `flush_final()`, which sends the close message on the MPI channel. Add explicit `= delete` for its copy constructor and copy-assignment so an accidental copy can't trigger the side effect twice. Also replace the empty `~basic_mpi_ostream() override {}` with `= default`.

...
Test: linux.clang.integration.release_debug_no_symbols

Failed sub-tests (click for more details):
cmaes_minimizer
Test: linux.clang.integration.tutorials

Failed sub-tests (click for more details):
input_and_output
Test: mac.clang.python39.integration

Failed sub-tests (click for more details):
mp_f19_relax
Test: linux.clang.maintenance.documentation

 View log

Loading...

 View log in dialog  View log in log in separate window


branch: rosetta:main 「№62261」
Commited by: lyskov-ai
GitHub commit link: 「99f2f5edd2b52003」
Difference from previous tested commit:  code diff
Commit date: 2026-06-07 19:04:44
linux.clang linux.gcc linux.srlz mac.clang
debug
release
unit
PyRosetta.notebook gcc-9.gcc.python37.PyRosetta.unit m1.clang.python310.PyRosetta.unit m1.clang.python311.PyRosetta.unit m1.clang.python312.PyRosetta.unit m1.clang.python313.PyRosetta.unit m1.clang.python314.PyRosetta.unit m1.clang.python39.PyRosetta.unit mac.clang.python38.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.clang.python310.PyRosetta.unit ubuntu-20.04.clang.python312.PyRosetta.unit ubuntu-20.04.clang.python313.PyRosetta.unit ubuntu-20.04.clang.python314.PyRosetta.unit ubuntu-20.04.clang.python39.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-20.04.gcc.python310.PyRosetta.unit ubuntu-20.04.gcc.python311.PyRosetta.unit ubuntu-20.04.gcc.python312.PyRosetta.unit ubuntu-20.04.gcc.python313.PyRosetta.unit ubuntu-20.04.gcc.python39.PyRosetta.unit ubuntu-22.04.clang.cxx11thread.serialization.PyRosetta.unit ubuntu-22.04.clang.python310.PyRosetta.unit ubuntu-22.04.clang.python313.PyRosetta.unit ubuntu-22.04.gcc.python310.PyRosetta.unit ubuntu-22.04.gcc.python311.PyRosetta.unit ubuntu-22.04.gcc.python312.PyRosetta.unit ubuntu-24.04.clang.python310.PyRosetta.unit ubuntu-24.04.clang.python311.PyRosetta.unit ubuntu-24.04.clang.python312.PyRosetta.unit ubuntu-24.04.clang.python313.PyRosetta.unit ubuntu-24.04.clang.python314.PyRosetta.unit ubuntu-24.04.gcc.cxx11thread.serialization.PyRosetta.unit ubuntu-24.04.gcc.python312.PyRosetta.unit ubuntu-24.04.gcc.python313.PyRosetta.unit ubuntu-24.04.gcc.python314.PyRosetta.unit ubuntu.clang.cxx11thread.serialization.python38.PyRosetta.unit ubuntu.clang.python39.PyRosetta.unit ubuntu.gcc.python311.PyRosetta.unit ubuntu.gcc.python312.PyRosetta.unit ubuntu.gcc.python313.PyRosetta.unit icc.icc.build.debug linux.clang.bcl.build.debug linux.clang.hdf5.build.debug mysql postgres linux.clang.python310.build.debug linux.clang.python312.build.debug linux.zeromq.debug linux.gcc.bcl.build.debug mpi mpi.serialization linux.gcc.python312.build.debug linux.gcc.python39.build.debug m1.clang.build.debug m1.clang.python312.build.debug m1.clang.python313.build.debug m1.clang.python39.build.debug ubuntu-20.04.clang.build.debug ubuntu-20.04.clang.cxx11thread.serialization.build.debug ubuntu-20.04.gcc.build.debug ubuntu-22.04.clang.build.debug ubuntu-22.04.gcc.build.debug ubuntu-22.04.gcc.cxx11thread.serialization.build.debug ubuntu.clang.build.debug ubuntu.clang.python311.build.debug ubuntu.clang.python312.build.debug ubuntu.clang.python314.build.debug ubuntu.clang.python39.build.debug ubuntu.gcc.bcl.build.debug ubuntu.gcc.build.debug ubuntu.gcc.cxx11thread.serialization.build.debug build.header build.levels build.ninja_debug gcc-11.gcc.build.release gcc-11.gcc.cxx11thread.serialization.build.release linux.clang.python310.build.release linux.clang.python311.build.release linux.clang.python312.build.release linux.clang.python39.build.release linux.gcc.python310.build.release linux.gcc.python311.build.release linux.gcc.python312.build.release linux.gcc.python39.build.release static m1.clang.build.release m1.clang.python310.build.release m1.clang.python312.build.release m1.clang.python313.build.release m1.clang.python314.build.release m1.clang.python39.build.release ubuntu-20.04.clang.build.release ubuntu-20.04.clang.cxx11thread.serialization.build.release ubuntu-20.04.gcc.build.release ubuntu-20.04.gcc.cxx11thread.serialization.build.release ubuntu-22.04.clang.build.release ubuntu-22.04.gcc.build.release ubuntu-24.04.clang.build.release ubuntu-24.04.clang.cxx11thread.serialization.build.release ubuntu.clang.build.release ubuntu.clang.cxx11thread.serialization.build.release ubuntu.clang.python310.build.release ubuntu.clang.python311.build.release ubuntu.clang.python312.build.release ubuntu.clang.python313.build.release ubuntu.clang.python314.build.release ubuntu.clang.python39.build.release ubuntu.gcc.build.release ubuntu.gcc.cxx11thread.serialization.build.release ubuntu.gcc.python310.build.release ubuntu.gcc.python311.build.release ubuntu.gcc.python312.build.release ubuntu.gcc.python313.build.release ubuntu.gcc.python314.build.release beautification code_quality.cppcheck code_quality.merge_size serialization code_quality.submodule_regression integration.mpi integration.release_debug integration.tensorflow integration.thread integration.torch integration.tutorials integration performance profile ubuntu.clang.python310.release.PyRosetta.MinSizeRel ubuntu.clang.python312.release.PyRosetta.MinSizeRel ubuntu.clang.python313.release.PyRosetta.MinSizeRel ubuntu.clang.python38.release.PyRosetta.MinSizeRel ubuntu.clang.python39.release.PyRosetta.MinSizeRel m1.clang.python311.release.PyRosetta.Release ubuntu.clang.python311.release.PyRosetta.Release ubuntu.clang.python312.release.PyRosetta.Release ubuntu.clang.python313.release.PyRosetta.Release release.PyRosetta.conda.Release linux.clang.score linux.gcc.score mac.clang.score scripts.pyrosetta scripts.rosetta.parse scripts.rosetta.validate scripts.rosetta.verify unit.release linux.clang.python312.unit m1.clang.python310.unit m1.clang.python311.unit m1.clang.python312.unit m1.clang.python313.unit m1.clang.python314.unit m1.clang.python39.unit ubuntu-20.04.clang.cxx11thread.serialization.unit ubuntu-20.04.clang.python39.unit ubuntu-20.04.gcc.cxx11thread.serialization.unit ubuntu-20.04.gcc.python39.unit ubuntu-20.04.gcc.unit ubuntu-22.04.clang.python39.unit ubuntu-22.04.clang.unit ubuntu-22.04.gcc.cxx11thread.serialization.unit ubuntu-22.04.gcc.unit ubuntu-24.04.clang.cxx11thread.serialization.unit ubuntu-24.04.clang.unit ubuntu.clang.cxx11thread.serialization.unit ubuntu.clang.python311.unit ubuntu.clang.python312.unit ubuntu.clang.python313.unit ubuntu.clang.python314.unit ubuntu.clang.python39.unit ubuntu.gcc.cxx11thread.serialization.unit util.apps windows.build.debug windows.build.release

Apply Rule of Zero across utility/options/ empty destructors (#693) ## Summary Drop user-declared empty destructors from the `utility/options/` and `utility/options/keys/` class hierarchies. The implicit destructor preserves virtual dispatch in every case via inherited virtual destructors: - All option classes inherit (transitively) from `utility::options::Option`, which declares `virtual ~Option()`. - All option-key classes inherit (transitively) from `utility::keys::Key`, which declares `virtual ~Key()`. No class touched here owns a raw resource, declares a non-trivial destructor body, or has a user-declared copy/move that would suppress the implicit destructor. ### `utility/options/` — abstract bases and remaining leaf option classes * Abstract / templated bases: `ScalarOption`, `ScalarOption_T_`, `VectorOption`, `VectorOption_T_`, `AnyOption`, `AnyVectorOption`. * Leaf options: `PathOption`, `PathVectorOption`, `StringOption`, `StringVectorOption`, `ResidueChainVectorOption`. `AnyOption` / `AnyVectorOption` used the `virtual` keyword on the empty body; the rest used `override {}`. Both forms are equivalent to the implicit virtual destructor here. ### `utility/options/keys/` — base + 16 leaf key types * Base: `OptionKey`. * Leaves: `AnyOptionKey`, `AnyVectorOptionKey`, `BooleanOptionKey`, `BooleanVectorOptionKey`, `FileOptionKey`, `FileVectorOptionKey`, `IntegerOptionKey`, `IntegerVectorOptionKey`, `PathOptionKey`, `PathVectorOptionKey`, `RealOptionKey`, `RealVectorOptionKey`, `ResidueChainVectorOptionKey`, `ScalarOptionKey`, `StringOptionKey`, `StringVectorOptionKey`, `VectorOptionKey`. This is the natural follow-up to #692, which intentionally deferred this batch. With this PR, the entire `utility/options*` empty-virtual-destructor pattern is cleaned up. 29 files, 156 deletions, 0 additions. Debug build clean.



branch: rosetta:main 「№62260」
Commited by: Rocco Moretti
GitHub commit link: 「7ba83c1423958780」
Difference from previous tested commit:  code diff
Commit date: 2026-06-04 17:54:22
linux.clang linux.gcc linux.srlz mac.clang
debug
release
unit
PyRosetta.notebook gcc-9.gcc.python37.PyRosetta.unit m1.clang.python310.PyRosetta.unit m1.clang.python311.PyRosetta.unit m1.clang.python312.PyRosetta.unit m1.clang.python313.PyRosetta.unit m1.clang.python314.PyRosetta.unit m1.clang.python38.PyRosetta.unit m1.clang.python39.PyRosetta.unit mac.clang.python38.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-20.04.clang.python310.PyRosetta.unit ubuntu-20.04.clang.python311.PyRosetta.unit ubuntu-20.04.clang.python312.PyRosetta.unit ubuntu-20.04.clang.python313.PyRosetta.unit ubuntu-20.04.clang.python314.PyRosetta.unit ubuntu-20.04.clang.python39.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-20.04.gcc.python310.PyRosetta.unit ubuntu-20.04.gcc.python311.PyRosetta.unit ubuntu-20.04.gcc.python312.PyRosetta.unit ubuntu-20.04.gcc.python313.PyRosetta.unit ubuntu-20.04.gcc.python314.PyRosetta.unit ubuntu-20.04.gcc.python39.PyRosetta.unit ubuntu-22.04.clang.cxx11thread.serialization.PyRosetta.unit ubuntu-22.04.clang.python310.PyRosetta.unit ubuntu-22.04.clang.python311.PyRosetta.unit ubuntu-22.04.clang.python312.PyRosetta.unit ubuntu-22.04.clang.python313.PyRosetta.unit ubuntu-22.04.clang.python314.PyRosetta.unit ubuntu-22.04.clang.python39.PyRosetta.unit ubuntu-22.04.gcc.cxx11thread.serialization.PyRosetta.unit ubuntu-22.04.gcc.python310.PyRosetta.unit ubuntu-22.04.gcc.python311.PyRosetta.unit ubuntu-22.04.gcc.python312.PyRosetta.unit ubuntu-22.04.gcc.python313.PyRosetta.unit ubuntu-22.04.gcc.python314.PyRosetta.unit ubuntu-22.04.gcc.python39.PyRosetta.unit ubuntu-24.04.clang.cxx11thread.serialization.PyRosetta.unit ubuntu-24.04.clang.python310.PyRosetta.unit ubuntu-24.04.clang.python311.PyRosetta.unit ubuntu-24.04.clang.python312.PyRosetta.unit ubuntu-24.04.clang.python313.PyRosetta.unit ubuntu-24.04.clang.python314.PyRosetta.unit ubuntu-24.04.clang.python39.PyRosetta.unit ubuntu-24.04.gcc.cxx11thread.serialization.PyRosetta.unit ubuntu-24.04.gcc.python310.PyRosetta.unit ubuntu-24.04.gcc.python311.PyRosetta.unit ubuntu-24.04.gcc.python312.PyRosetta.unit ubuntu-24.04.gcc.python313.PyRosetta.unit ubuntu-24.04.gcc.python314.PyRosetta.unit ubuntu-24.04.gcc.python39.PyRosetta.unit ubuntu.clang.cxx11thread.serialization.python38.PyRosetta.unit ubuntu.clang.python310.PyRosetta.unit ubuntu.clang.python311.PyRosetta.unit ubuntu.clang.python312.PyRosetta.unit ubuntu.clang.python313.PyRosetta.unit ubuntu.clang.python314.PyRosetta.unit ubuntu.clang.python39.PyRosetta.unit ubuntu.gcc.python310.PyRosetta.unit ubuntu.gcc.python311.PyRosetta.unit ubuntu.gcc.python312.PyRosetta.unit ubuntu.gcc.python313.PyRosetta.unit ubuntu.gcc.python314.PyRosetta.unit ubuntu.gcc.python39.PyRosetta.unit build.clean.debug alpine.gcc.build.debug clang-10.clang.cxx11thread.mpi.serialization.tensorflow.build.debug gcc-10.gcc.build.debug gcc-10.gcc.cxx11thread.serialization.build.debug gcc-11.gcc.build.debug gcc-11.gcc.cxx11thread.serialization.build.debug gcc-9.gcc.build.debug gcc-9.gcc.cxx11thread.serialization.build.debug icc.icc.build.debug linux.clang.bcl.build.debug linux.clang.hdf5.build.debug mysql postgres linux.clang.python310.build.debug linux.clang.python311.build.debug linux.clang.python312.build.debug linux.clang.python39.build.debug linux.zeromq.debug linux.gcc.bcl.build.debug mpi mpi.serialization linux.gcc.python310.build.debug linux.gcc.python311.build.debug linux.gcc.python312.build.debug linux.gcc.python39.build.debug m1.clang.build.debug m1.clang.cxx11thread.serialization.build.debug m1.clang.python310.build.debug m1.clang.python311.build.debug m1.clang.python312.build.debug m1.clang.python313.build.debug m1.clang.python314.build.debug m1.clang.python39.build.debug ubuntu-20.04.clang.build.debug ubuntu-20.04.clang.cxx11thread.serialization.build.debug ubuntu-20.04.gcc.build.debug ubuntu-20.04.gcc.cxx11thread.serialization.build.debug ubuntu-22.04.clang.build.debug ubuntu-22.04.clang.cxx11thread.serialization.build.debug ubuntu-22.04.gcc.build.debug ubuntu-22.04.gcc.cxx11thread.serialization.build.debug ubuntu-24.04.clang.build.debug ubuntu-24.04.clang.cxx11thread.serialization.build.debug ubuntu-24.04.gcc.build.debug ubuntu-24.04.gcc.cxx11thread.serialization.build.debug ubuntu.clang.bcl.build.debug ubuntu.clang.build.debug ubuntu.clang.cxx11thread.serialization.build.debug ubuntu.clang.python310.build.debug ubuntu.clang.python311.build.debug ubuntu.clang.python312.build.debug ubuntu.clang.python313.build.debug ubuntu.clang.python314.build.debug ubuntu.clang.python39.build.debug ubuntu.gcc.bcl.build.debug ubuntu.gcc.build.debug ubuntu.gcc.cxx11thread.serialization.build.debug ubuntu.gcc.python310.build.debug ubuntu.gcc.python311.build.debug ubuntu.gcc.python312.build.debug ubuntu.gcc.python313.build.debug ubuntu.gcc.python314.build.debug ubuntu.gcc.python39.build.debug build.header build.levels build.ninja_debug gcc-10.gcc.build.release gcc-10.gcc.cxx11thread.serialization.build.release gcc-11.gcc.build.release gcc-11.gcc.cxx11thread.serialization.build.release gcc-9.gcc.build.release gcc-9.gcc.cxx11thread.serialization.build.release linux.clang.python310.build.release linux.clang.python311.build.release linux.clang.python312.build.release linux.clang.python39.build.release linux.gcc.python310.build.release linux.gcc.python311.build.release linux.gcc.python312.build.release linux.gcc.python39.build.release static m1.clang.build.release m1.clang.cxx11thread.serialization.build.release m1.clang.python310.build.release m1.clang.python311.build.release m1.clang.python312.build.release m1.clang.python313.build.release m1.clang.python314.build.release m1.clang.python39.build.release ubuntu-20.04.clang.build.release ubuntu-20.04.clang.cxx11thread.serialization.build.release ubuntu-20.04.gcc.build.release ubuntu-20.04.gcc.cxx11thread.serialization.build.release ubuntu-22.04.clang.build.release ubuntu-22.04.clang.cxx11thread.serialization.build.release ubuntu-22.04.gcc.build.release ubuntu-22.04.gcc.cxx11thread.serialization.build.release ubuntu-24.04.clang.build.release ubuntu-24.04.clang.cxx11thread.serialization.build.release ubuntu-24.04.gcc.build.release ubuntu-24.04.gcc.cxx11thread.serialization.build.release ubuntu.clang.build.release ubuntu.clang.cxx11thread.serialization.build.release ubuntu.clang.python310.build.release ubuntu.clang.python311.build.release ubuntu.clang.python312.build.release ubuntu.clang.python313.build.release ubuntu.clang.python314.build.release ubuntu.clang.python39.build.release ubuntu.gcc.build.release ubuntu.gcc.cxx11thread.serialization.build.release ubuntu.gcc.python310.build.release ubuntu.gcc.python311.build.release ubuntu.gcc.python312.build.release ubuntu.gcc.python313.build.release ubuntu.gcc.python314.build.release ubuntu.gcc.python39.build.release beautification code_quality.clang_analysis code_quality.clang_tidy code_quality.cppcheck code_quality.merge_size serialization code_quality.submodule_regression integration.addsan integration.mpi integration.release_debug integration.tensorflow integration.thread integration.torch integration.tutorials integration.ubsan integration.valgrind integration maintenance.documentation performance profile m1.clang.python310.release.PyRosetta.MinSizeRel m1.clang.python311.release.PyRosetta.MinSizeRel m1.clang.python312.release.PyRosetta.MinSizeRel m1.clang.python313.release.PyRosetta.MinSizeRel m1.clang.python38.release.PyRosetta.MinSizeRel m1.clang.python39.release.PyRosetta.MinSizeRel ubuntu.clang.python310.release.PyRosetta.MinSizeRel ubuntu.clang.python311.release.PyRosetta.MinSizeRel ubuntu.clang.python312.release.PyRosetta.MinSizeRel ubuntu.clang.python313.release.PyRosetta.MinSizeRel ubuntu.clang.python38.release.PyRosetta.MinSizeRel ubuntu.clang.python39.release.PyRosetta.MinSizeRel m1.clang.python310.release.PyRosetta.Release m1.clang.python311.release.PyRosetta.Release m1.clang.python312.release.PyRosetta.Release m1.clang.python313.release.PyRosetta.Release m1.clang.python38.release.PyRosetta.Release m1.clang.python39.release.PyRosetta.Release ubuntu.clang.python310.release.PyRosetta.Release ubuntu.clang.python311.release.PyRosetta.Release ubuntu.clang.python312.release.PyRosetta.Release ubuntu.clang.python313.release.PyRosetta.Release ubuntu.clang.python38.release.PyRosetta.Release ubuntu.clang.python39.release.PyRosetta.Release release.PyRosetta.conda.Release release.source linux.clang.score linux.gcc.score mac.clang.score scripts.pyrosetta scripts.rosetta.parse scripts.rosetta.validate scripts.rosetta.verify unit.addsan linux.clang.unit.release linux.gcc.unit.release unit.ubsan unit.valgrind gcc-10.gcc.cxx11thread.serialization.unit gcc-10.gcc.unit gcc-11.gcc.cxx11thread.serialization.unit gcc-11.gcc.unit gcc-9.gcc.cxx11thread.serialization.unit gcc-9.gcc.unit linux.clang.python310.unit linux.clang.python311.unit linux.clang.python312.unit linux.clang.python39.unit linux.gcc.python310.unit linux.gcc.python311.unit linux.gcc.python312.unit linux.gcc.python39.unit m1.clang.cxx11thread.serialization.unit m1.clang.python310.unit m1.clang.python311.unit m1.clang.python312.unit m1.clang.python313.unit m1.clang.python314.unit m1.clang.python39.unit m1.clang.unit ubuntu-20.04.clang.cxx11thread.serialization.unit ubuntu-20.04.clang.python39.unit ubuntu-20.04.clang.unit ubuntu-20.04.gcc.cxx11thread.serialization.unit ubuntu-20.04.gcc.python39.unit ubuntu-20.04.gcc.unit ubuntu-22.04.clang.cxx11thread.serialization.unit ubuntu-22.04.clang.python39.unit ubuntu-22.04.clang.unit ubuntu-22.04.gcc.cxx11thread.serialization.unit ubuntu-22.04.gcc.python39.unit ubuntu-22.04.gcc.unit ubuntu-24.04.clang.cxx11thread.serialization.unit ubuntu-24.04.clang.unit ubuntu-24.04.gcc.cxx11thread.serialization.unit ubuntu-24.04.gcc.unit ubuntu.clang.cxx11thread.serialization.unit ubuntu.clang.python310.unit ubuntu.clang.python311.unit ubuntu.clang.python312.unit ubuntu.clang.python313.unit ubuntu.clang.python314.unit ubuntu.clang.python39.unit ubuntu.clang.unit ubuntu.gcc.cxx11thread.serialization.unit ubuntu.gcc.python310.unit ubuntu.gcc.python311.unit ubuntu.gcc.python312.unit ubuntu.gcc.python313.unit ubuntu.gcc.python314.unit ubuntu.gcc.python39.unit ubuntu.gcc.unit util.apps windows.build.debug windows.build.release

Update the PyRosetta license (#713) The updated licensing text for PyRosetta.

...
Test: linux.gcc.mpi.serialization.integration.mpi

Failed sub-tests (click for more details):
replica_docking
Test: linux.clang.integration.tutorials

Failed sub-tests (click for more details):
input_and_output
Test: mac.clang.python39.integration

Failed sub-tests (click for more details):
mp_f19_relax
Test: linux.clang.maintenance.documentation

 View log

Loading...

 View log in dialog  View log in log in separate window


branch: rosetta:main 「№62259」
Commited by: lyskov-ai
GitHub commit link: 「1886935466c4b1e2」
Difference from previous tested commit:  code diff
Commit date: 2026-05-28 18:46:43
linux.clang linux.gcc linux.srlz mac.clang
debug
release
unit
PyRosetta.notebook gcc-9.gcc.python37.PyRosetta.unit m1.clang.python310.PyRosetta.unit m1.clang.python311.PyRosetta.unit m1.clang.python312.PyRosetta.unit m1.clang.python313.PyRosetta.unit m1.clang.python314.PyRosetta.unit m1.clang.python38.PyRosetta.unit m1.clang.python39.PyRosetta.unit mac.clang.python38.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-20.04.clang.python310.PyRosetta.unit ubuntu-20.04.clang.python311.PyRosetta.unit ubuntu-20.04.clang.python312.PyRosetta.unit ubuntu-20.04.clang.python313.PyRosetta.unit ubuntu-20.04.clang.python314.PyRosetta.unit ubuntu-20.04.clang.python39.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-20.04.gcc.python310.PyRosetta.unit ubuntu-20.04.gcc.python311.PyRosetta.unit ubuntu-20.04.gcc.python312.PyRosetta.unit ubuntu-20.04.gcc.python313.PyRosetta.unit ubuntu-20.04.gcc.python314.PyRosetta.unit ubuntu-20.04.gcc.python39.PyRosetta.unit ubuntu-22.04.clang.cxx11thread.serialization.PyRosetta.unit ubuntu-22.04.clang.python310.PyRosetta.unit ubuntu-22.04.clang.python311.PyRosetta.unit ubuntu-22.04.clang.python312.PyRosetta.unit ubuntu-22.04.clang.python313.PyRosetta.unit ubuntu-22.04.clang.python314.PyRosetta.unit ubuntu-22.04.clang.python39.PyRosetta.unit ubuntu-22.04.gcc.cxx11thread.serialization.PyRosetta.unit ubuntu-22.04.gcc.python310.PyRosetta.unit ubuntu-22.04.gcc.python311.PyRosetta.unit ubuntu-22.04.gcc.python312.PyRosetta.unit ubuntu-22.04.gcc.python313.PyRosetta.unit ubuntu-22.04.gcc.python314.PyRosetta.unit ubuntu-22.04.gcc.python39.PyRosetta.unit ubuntu-24.04.clang.cxx11thread.serialization.PyRosetta.unit ubuntu-24.04.clang.python310.PyRosetta.unit ubuntu-24.04.clang.python311.PyRosetta.unit ubuntu-24.04.clang.python312.PyRosetta.unit ubuntu-24.04.clang.python313.PyRosetta.unit ubuntu-24.04.clang.python314.PyRosetta.unit ubuntu-24.04.clang.python39.PyRosetta.unit ubuntu-24.04.gcc.cxx11thread.serialization.PyRosetta.unit ubuntu-24.04.gcc.python310.PyRosetta.unit ubuntu-24.04.gcc.python311.PyRosetta.unit ubuntu-24.04.gcc.python312.PyRosetta.unit ubuntu-24.04.gcc.python313.PyRosetta.unit ubuntu-24.04.gcc.python314.PyRosetta.unit ubuntu-24.04.gcc.python39.PyRosetta.unit ubuntu.clang.cxx11thread.serialization.python38.PyRosetta.unit ubuntu.clang.python310.PyRosetta.unit ubuntu.clang.python311.PyRosetta.unit ubuntu.clang.python312.PyRosetta.unit ubuntu.clang.python313.PyRosetta.unit ubuntu.clang.python314.PyRosetta.unit ubuntu.clang.python39.PyRosetta.unit ubuntu.gcc.python310.PyRosetta.unit ubuntu.gcc.python311.PyRosetta.unit ubuntu.gcc.python312.PyRosetta.unit ubuntu.gcc.python313.PyRosetta.unit ubuntu.gcc.python314.PyRosetta.unit ubuntu.gcc.python39.PyRosetta.unit build.clean.debug alpine.gcc.build.debug clang-10.clang.cxx11thread.mpi.serialization.tensorflow.build.debug gcc-10.gcc.build.debug gcc-10.gcc.cxx11thread.serialization.build.debug gcc-11.gcc.build.debug gcc-11.gcc.cxx11thread.serialization.build.debug gcc-9.gcc.build.debug gcc-9.gcc.cxx11thread.serialization.build.debug icc.icc.build.debug linux.clang.bcl.build.debug linux.clang.hdf5.build.debug mysql postgres linux.clang.python310.build.debug linux.clang.python311.build.debug linux.clang.python312.build.debug linux.clang.python39.build.debug linux.zeromq.debug linux.gcc.bcl.build.debug mpi mpi.serialization linux.gcc.python310.build.debug linux.gcc.python311.build.debug linux.gcc.python312.build.debug linux.gcc.python39.build.debug m1.clang.build.debug m1.clang.cxx11thread.serialization.build.debug m1.clang.python310.build.debug m1.clang.python311.build.debug m1.clang.python312.build.debug m1.clang.python313.build.debug m1.clang.python314.build.debug m1.clang.python39.build.debug ubuntu-20.04.clang.build.debug ubuntu-20.04.clang.cxx11thread.serialization.build.debug ubuntu-20.04.gcc.build.debug ubuntu-20.04.gcc.cxx11thread.serialization.build.debug ubuntu-22.04.clang.build.debug ubuntu-22.04.clang.cxx11thread.serialization.build.debug ubuntu-22.04.gcc.build.debug ubuntu-22.04.gcc.cxx11thread.serialization.build.debug ubuntu-24.04.clang.build.debug ubuntu-24.04.clang.cxx11thread.serialization.build.debug ubuntu-24.04.gcc.build.debug ubuntu-24.04.gcc.cxx11thread.serialization.build.debug ubuntu.clang.bcl.build.debug ubuntu.clang.build.debug ubuntu.clang.cxx11thread.serialization.build.debug ubuntu.clang.python310.build.debug ubuntu.clang.python311.build.debug ubuntu.clang.python312.build.debug ubuntu.clang.python313.build.debug ubuntu.clang.python314.build.debug ubuntu.clang.python39.build.debug ubuntu.gcc.bcl.build.debug ubuntu.gcc.build.debug ubuntu.gcc.cxx11thread.serialization.build.debug ubuntu.gcc.python310.build.debug ubuntu.gcc.python311.build.debug ubuntu.gcc.python312.build.debug ubuntu.gcc.python313.build.debug ubuntu.gcc.python314.build.debug ubuntu.gcc.python39.build.debug build.header build.levels build.ninja_debug gcc-10.gcc.build.release gcc-10.gcc.cxx11thread.serialization.build.release gcc-11.gcc.build.release gcc-11.gcc.cxx11thread.serialization.build.release gcc-9.gcc.build.release gcc-9.gcc.cxx11thread.serialization.build.release linux.clang.python310.build.release linux.clang.python311.build.release linux.clang.python312.build.release linux.clang.python39.build.release linux.gcc.python310.build.release linux.gcc.python311.build.release linux.gcc.python312.build.release linux.gcc.python39.build.release static m1.clang.build.release m1.clang.cxx11thread.serialization.build.release m1.clang.python310.build.release m1.clang.python311.build.release m1.clang.python312.build.release m1.clang.python313.build.release m1.clang.python314.build.release m1.clang.python39.build.release ubuntu-20.04.clang.build.release ubuntu-20.04.clang.cxx11thread.serialization.build.release ubuntu-20.04.gcc.build.release ubuntu-20.04.gcc.cxx11thread.serialization.build.release ubuntu-22.04.clang.build.release ubuntu-22.04.clang.cxx11thread.serialization.build.release ubuntu-22.04.gcc.build.release ubuntu-22.04.gcc.cxx11thread.serialization.build.release ubuntu-24.04.clang.build.release ubuntu-24.04.clang.cxx11thread.serialization.build.release ubuntu-24.04.gcc.build.release ubuntu-24.04.gcc.cxx11thread.serialization.build.release ubuntu.clang.build.release ubuntu.clang.cxx11thread.serialization.build.release ubuntu.clang.python310.build.release ubuntu.clang.python311.build.release ubuntu.clang.python312.build.release ubuntu.clang.python313.build.release ubuntu.clang.python314.build.release ubuntu.clang.python39.build.release ubuntu.gcc.build.release ubuntu.gcc.cxx11thread.serialization.build.release ubuntu.gcc.python310.build.release ubuntu.gcc.python311.build.release ubuntu.gcc.python312.build.release ubuntu.gcc.python313.build.release ubuntu.gcc.python314.build.release ubuntu.gcc.python39.build.release beautification code_quality.clang_analysis code_quality.clang_tidy code_quality.cppcheck code_quality.merge_size serialization code_quality.submodule_regression integration.addsan integration.mpi integration.release_debug integration.tensorflow integration.thread integration.torch integration.tutorials integration.ubsan integration.valgrind integration maintenance.documentation performance profile m1.clang.python310.release.PyRosetta.MinSizeRel m1.clang.python311.release.PyRosetta.MinSizeRel m1.clang.python312.release.PyRosetta.MinSizeRel m1.clang.python313.release.PyRosetta.MinSizeRel m1.clang.python38.release.PyRosetta.MinSizeRel m1.clang.python39.release.PyRosetta.MinSizeRel ubuntu.clang.python310.release.PyRosetta.MinSizeRel ubuntu.clang.python311.release.PyRosetta.MinSizeRel ubuntu.clang.python312.release.PyRosetta.MinSizeRel ubuntu.clang.python313.release.PyRosetta.MinSizeRel ubuntu.clang.python38.release.PyRosetta.MinSizeRel ubuntu.clang.python39.release.PyRosetta.MinSizeRel m1.clang.python310.release.PyRosetta.Release m1.clang.python311.release.PyRosetta.Release m1.clang.python312.release.PyRosetta.Release m1.clang.python313.release.PyRosetta.Release m1.clang.python38.release.PyRosetta.Release m1.clang.python39.release.PyRosetta.Release ubuntu.clang.python310.release.PyRosetta.Release ubuntu.clang.python311.release.PyRosetta.Release ubuntu.clang.python312.release.PyRosetta.Release ubuntu.clang.python313.release.PyRosetta.Release ubuntu.clang.python38.release.PyRosetta.Release ubuntu.clang.python39.release.PyRosetta.Release release.PyRosetta.conda.Release release.source scientific.make_fragments.debug scientific.make_fragments linux.clang.score linux.gcc.score mac.clang.score scripts.pyrosetta scripts.rosetta.parse scripts.rosetta.validate scripts.rosetta.verify unit.addsan linux.clang.unit.release linux.gcc.unit.release unit.ubsan unit.valgrind gcc-10.gcc.cxx11thread.serialization.unit gcc-10.gcc.unit gcc-11.gcc.cxx11thread.serialization.unit gcc-11.gcc.unit gcc-9.gcc.cxx11thread.serialization.unit gcc-9.gcc.unit linux.clang.python310.unit linux.clang.python311.unit linux.clang.python312.unit linux.clang.python39.unit linux.gcc.python310.unit linux.gcc.python311.unit linux.gcc.python312.unit linux.gcc.python39.unit m1.clang.cxx11thread.serialization.unit m1.clang.python310.unit m1.clang.python311.unit m1.clang.python312.unit m1.clang.python313.unit m1.clang.python314.unit m1.clang.python39.unit m1.clang.unit ubuntu-20.04.clang.cxx11thread.serialization.unit ubuntu-20.04.clang.python39.unit ubuntu-20.04.clang.unit ubuntu-20.04.gcc.cxx11thread.serialization.unit ubuntu-20.04.gcc.python39.unit ubuntu-20.04.gcc.unit ubuntu-22.04.clang.cxx11thread.serialization.unit ubuntu-22.04.clang.python39.unit ubuntu-22.04.clang.unit ubuntu-22.04.gcc.cxx11thread.serialization.unit ubuntu-22.04.gcc.python39.unit ubuntu-22.04.gcc.unit ubuntu-24.04.clang.cxx11thread.serialization.unit ubuntu-24.04.clang.unit ubuntu-24.04.gcc.cxx11thread.serialization.unit ubuntu-24.04.gcc.unit ubuntu.clang.cxx11thread.serialization.unit ubuntu.clang.python310.unit ubuntu.clang.python311.unit ubuntu.clang.python312.unit ubuntu.clang.python313.unit ubuntu.clang.python314.unit ubuntu.clang.python39.unit ubuntu.clang.unit ubuntu.gcc.cxx11thread.serialization.unit ubuntu.gcc.python310.unit ubuntu.gcc.python311.unit ubuntu.gcc.python312.unit ubuntu.gcc.python313.unit ubuntu.gcc.python314.unit ubuntu.gcc.python39.unit ubuntu.gcc.unit util.apps windows.build.debug windows.build.release

Apply Rule of Zero across utility/ helpers (#692) ## Summary Remove user-declared destructors and trivial copy ctor/assignment implementations whose bodies are equivalent to the compiler-generated defaults. The implicit special members are correct in every case (no owning raw pointers, no side effects in the removed bodies, virtual destructor inheritance preserved through base classes). ### utility/graph/ — non-owning iterator/element helpers * `Graph.hh`: `EdgeListElement`, `EdgeListIterator`, `EdgeListConstIterator` — drop user dtor and the `= default` copy ctor / assignment. * `Digraph.hh`: `DirectedEdgeListElement`, `DirectedEdgeListIterator`, `DirectedEdgeListConstIterator` — drop user dtor and member-wise copy ctor / assignment. * `ArrayPool.hh` (`Array0`): drop user dtor, copy ctor, and self-assignment-guarded copy assignment. * `LowMemGraph.hh` (`LowMemGraphBase`): drop empty `override` dtor (`utility::VirtualBase` supplies the virtual destructor). * `UpperEdgeGraph.hh`: drop the empty `UEEdge` dtor and `~UpperEdgeGraph() override = default;`. `LowMemNode` / `LowMemEdge` are intentionally left untouched — their explicit destructor declarations anchor a load-bearing comment about deliberately not making the destructor virtual. ### utility/ * `DereferenceIterator.hh` (`DereferenceIterator`): drop empty user dtor. ### utility/options/ — empty overriding destructors Drop `~XxxOption() override {}` from the eight leaf scalar/vector option classes. The implicit destructor is virtual via inheritance from `Option` (which declares a virtual destructor), so dynamic dispatch is preserved. * `BooleanOption.hh`, `BooleanVectorOption.hh` * `FileOption.hh`, `FileVectorOption.hh` * `IntegerOption.hh`, `IntegerVectorOption.hh` * `RealOption.hh`, `RealVectorOption.hh` The remaining option classes with the same pattern (`PathOption`, `StringOption`, `ResidueChainVectorOption`, `ScalarOption`, `ScalarOption_T_`, `VectorOption`, `VectorOption_T_`) can be addressed in a follow-up; the eight here form a coherent leaf-scalar-plus-vector subset.

...
Test: linux.clang.integration.tutorials

Failed sub-tests (click for more details):
input_and_output
Test: mac.clang.python39.integration

Failed sub-tests (click for more details):
mp_f19_relax
Test: linux.clang.maintenance.documentation

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: linux.clang.performance

Failed sub-tests (click for more details):
instantiate_modules_packer_palettes


branch: rosetta:main 「№62258」
Commited by: Jason C. Klima
GitHub commit link: 「36f0c659eb5420c7」
Difference from previous tested commit:  code diff
Commit date: 2026-05-18 14:40:55
linux.clang linux.gcc linux.srlz mac.clang
debug
release
unit
PyRosetta.notebook gcc-9.gcc.python37.PyRosetta.unit m1.clang.python310.PyRosetta.unit m1.clang.python311.PyRosetta.unit m1.clang.python312.PyRosetta.unit m1.clang.python313.PyRosetta.unit m1.clang.python314.PyRosetta.unit m1.clang.python38.PyRosetta.unit m1.clang.python39.PyRosetta.unit mac.clang.python310.PyRosetta.unit mac.clang.python311.PyRosetta.unit mac.clang.python312.PyRosetta.unit mac.clang.python313.PyRosetta.unit mac.clang.python314.PyRosetta.unit mac.clang.python38.PyRosetta.unit mac.clang.python39.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-20.04.clang.python310.PyRosetta.unit ubuntu-20.04.clang.python311.PyRosetta.unit ubuntu-20.04.clang.python312.PyRosetta.unit ubuntu-20.04.clang.python313.PyRosetta.unit ubuntu-20.04.clang.python314.PyRosetta.unit ubuntu-20.04.clang.python39.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-20.04.gcc.python310.PyRosetta.unit ubuntu-20.04.gcc.python311.PyRosetta.unit ubuntu-20.04.gcc.python312.PyRosetta.unit ubuntu-20.04.gcc.python313.PyRosetta.unit ubuntu-20.04.gcc.python314.PyRosetta.unit ubuntu-20.04.gcc.python39.PyRosetta.unit ubuntu-22.04.clang.cxx11thread.serialization.PyRosetta.unit ubuntu-22.04.clang.python310.PyRosetta.unit ubuntu-22.04.clang.python311.PyRosetta.unit ubuntu-22.04.clang.python312.PyRosetta.unit ubuntu-22.04.clang.python313.PyRosetta.unit ubuntu-22.04.clang.python314.PyRosetta.unit ubuntu-22.04.clang.python39.PyRosetta.unit ubuntu-22.04.gcc.cxx11thread.serialization.PyRosetta.unit ubuntu-22.04.gcc.python310.PyRosetta.unit ubuntu-22.04.gcc.python311.PyRosetta.unit ubuntu-22.04.gcc.python312.PyRosetta.unit ubuntu-22.04.gcc.python313.PyRosetta.unit ubuntu-22.04.gcc.python314.PyRosetta.unit ubuntu-22.04.gcc.python39.PyRosetta.unit ubuntu-24.04.clang.cxx11thread.serialization.PyRosetta.unit ubuntu-24.04.clang.python310.PyRosetta.unit ubuntu-24.04.clang.python311.PyRosetta.unit ubuntu-24.04.clang.python312.PyRosetta.unit ubuntu-24.04.clang.python313.PyRosetta.unit ubuntu-24.04.clang.python314.PyRosetta.unit ubuntu-24.04.clang.python39.PyRosetta.unit ubuntu-24.04.gcc.cxx11thread.serialization.PyRosetta.unit ubuntu-24.04.gcc.python310.PyRosetta.unit ubuntu-24.04.gcc.python311.PyRosetta.unit ubuntu-24.04.gcc.python312.PyRosetta.unit ubuntu-24.04.gcc.python313.PyRosetta.unit ubuntu-24.04.gcc.python314.PyRosetta.unit ubuntu-24.04.gcc.python39.PyRosetta.unit ubuntu.clang.cxx11thread.serialization.python38.PyRosetta.unit ubuntu.clang.python310.PyRosetta.unit ubuntu.clang.python311.PyRosetta.unit ubuntu.clang.python312.PyRosetta.unit ubuntu.clang.python313.PyRosetta.unit ubuntu.clang.python314.PyRosetta.unit ubuntu.clang.python39.PyRosetta.unit ubuntu.gcc.python310.PyRosetta.unit ubuntu.gcc.python311.PyRosetta.unit ubuntu.gcc.python312.PyRosetta.unit ubuntu.gcc.python313.PyRosetta.unit ubuntu.gcc.python314.PyRosetta.unit ubuntu.gcc.python39.PyRosetta.unit build.clean.debug alpine.gcc.build.debug clang-10.clang.cxx11thread.mpi.serialization.tensorflow.build.debug gcc-10.gcc.build.debug gcc-10.gcc.cxx11thread.serialization.build.debug gcc-11.gcc.build.debug gcc-11.gcc.cxx11thread.serialization.build.debug gcc-9.gcc.build.debug gcc-9.gcc.cxx11thread.serialization.build.debug icc.icc.build.debug linux.clang.bcl.build.debug linux.clang.hdf5.build.debug mysql postgres linux.clang.python310.build.debug linux.clang.python311.build.debug linux.clang.python312.build.debug linux.clang.python39.build.debug linux.zeromq.debug linux.gcc.bcl.build.debug mpi mpi.serialization linux.gcc.python310.build.debug linux.gcc.python311.build.debug linux.gcc.python312.build.debug linux.gcc.python39.build.debug m1.clang.build.debug m1.clang.cxx11thread.serialization.build.debug m1.clang.python310.build.debug m1.clang.python311.build.debug m1.clang.python312.build.debug m1.clang.python313.build.debug m1.clang.python314.build.debug m1.clang.python39.build.debug mac.clang.bcl.build.debug mac.clang.cxx11thread.serialization.build.debug OpenCL mac.clang.python310.build.debug mac.clang.python311.build.debug mac.clang.python312.build.debug mac.clang.python313.build.debug mac.clang.python314.build.debug mac.clang.python39.build.debug ubuntu-20.04.clang.build.debug ubuntu-20.04.clang.cxx11thread.serialization.build.debug ubuntu-20.04.gcc.build.debug ubuntu-20.04.gcc.cxx11thread.serialization.build.debug ubuntu-22.04.clang.build.debug ubuntu-22.04.clang.cxx11thread.serialization.build.debug ubuntu-22.04.gcc.build.debug ubuntu-22.04.gcc.cxx11thread.serialization.build.debug ubuntu-24.04.clang.build.debug ubuntu-24.04.clang.cxx11thread.serialization.build.debug ubuntu-24.04.gcc.build.debug ubuntu-24.04.gcc.cxx11thread.serialization.build.debug ubuntu.clang.bcl.build.debug ubuntu.clang.build.debug ubuntu.clang.cxx11thread.serialization.build.debug ubuntu.clang.python310.build.debug ubuntu.clang.python311.build.debug ubuntu.clang.python312.build.debug ubuntu.clang.python313.build.debug ubuntu.clang.python314.build.debug ubuntu.clang.python39.build.debug ubuntu.gcc.bcl.build.debug ubuntu.gcc.build.debug ubuntu.gcc.cxx11thread.serialization.build.debug ubuntu.gcc.python310.build.debug ubuntu.gcc.python311.build.debug ubuntu.gcc.python312.build.debug ubuntu.gcc.python313.build.debug ubuntu.gcc.python314.build.debug ubuntu.gcc.python39.build.debug build.header build.levels build.ninja_debug graphics gcc-10.gcc.build.release gcc-10.gcc.cxx11thread.serialization.build.release gcc-11.gcc.build.release gcc-11.gcc.cxx11thread.serialization.build.release gcc-9.gcc.build.release gcc-9.gcc.cxx11thread.serialization.build.release linux.clang.python310.build.release linux.clang.python311.build.release linux.clang.python312.build.release linux.clang.python39.build.release linux.gcc.python310.build.release linux.gcc.python311.build.release linux.gcc.python312.build.release linux.gcc.python39.build.release static m1.clang.build.release m1.clang.cxx11thread.serialization.build.release m1.clang.python310.build.release m1.clang.python311.build.release m1.clang.python312.build.release m1.clang.python313.build.release m1.clang.python314.build.release m1.clang.python39.build.release mac.clang.cxx11thread.serialization.build.release mac.clang.python310.build.release mac.clang.python311.build.release mac.clang.python312.build.release mac.clang.python313.build.release mac.clang.python314.build.release mac.clang.python39.build.release mac.clang.static.build.release torch.gcc.torch.python39.build.release ubuntu-20.04.clang.build.release ubuntu-20.04.clang.cxx11thread.serialization.build.release ubuntu-20.04.gcc.build.release ubuntu-20.04.gcc.cxx11thread.serialization.build.release ubuntu-22.04.clang.build.release ubuntu-22.04.clang.cxx11thread.serialization.build.release ubuntu-22.04.gcc.build.release ubuntu-22.04.gcc.cxx11thread.serialization.build.release ubuntu-24.04.clang.build.release ubuntu-24.04.clang.cxx11thread.serialization.build.release ubuntu-24.04.gcc.build.release ubuntu-24.04.gcc.cxx11thread.serialization.build.release ubuntu.clang.build.release ubuntu.clang.cxx11thread.serialization.build.release ubuntu.clang.python310.build.release ubuntu.clang.python311.build.release ubuntu.clang.python312.build.release ubuntu.clang.python313.build.release ubuntu.clang.python314.build.release ubuntu.clang.python39.build.release ubuntu.gcc.build.release ubuntu.gcc.cxx11thread.serialization.build.release ubuntu.gcc.python310.build.release ubuntu.gcc.python311.build.release ubuntu.gcc.python312.build.release ubuntu.gcc.python313.build.release ubuntu.gcc.python314.build.release ubuntu.gcc.python39.build.release beautification code_quality.clang_analysis code_quality.clang_tidy code_quality.cppcheck code_quality.merge_size serialization code_quality.submodule_regression integration.addsan integration.mpi integration.release_debug integration.tensorflow integration.thread integration.torch integration.tutorials integration.ubsan integration.valgrind integration maintenance.documentation performance profile m1.clang.python310.release.PyRosetta.MinSizeRel m1.clang.python311.release.PyRosetta.MinSizeRel m1.clang.python312.release.PyRosetta.MinSizeRel m1.clang.python313.release.PyRosetta.MinSizeRel m1.clang.python38.release.PyRosetta.MinSizeRel m1.clang.python39.release.PyRosetta.MinSizeRel mac.clang.python310.release.PyRosetta.MinSizeRel mac.clang.python311.release.PyRosetta.MinSizeRel mac.clang.python312.release.PyRosetta.MinSizeRel mac.clang.python313.release.PyRosetta.MinSizeRel mac.clang.python38.release.PyRosetta.MinSizeRel mac.clang.python39.release.PyRosetta.MinSizeRel ubuntu.clang.python310.release.PyRosetta.MinSizeRel ubuntu.clang.python311.release.PyRosetta.MinSizeRel ubuntu.clang.python312.release.PyRosetta.MinSizeRel ubuntu.clang.python313.release.PyRosetta.MinSizeRel ubuntu.clang.python38.release.PyRosetta.MinSizeRel ubuntu.clang.python39.release.PyRosetta.MinSizeRel m1.clang.python310.release.PyRosetta.Release m1.clang.python311.release.PyRosetta.Release m1.clang.python312.release.PyRosetta.Release m1.clang.python313.release.PyRosetta.Release m1.clang.python38.release.PyRosetta.Release m1.clang.python39.release.PyRosetta.Release mac.clang.python310.release.PyRosetta.Release mac.clang.python311.release.PyRosetta.Release mac.clang.python312.release.PyRosetta.Release mac.clang.python313.release.PyRosetta.Release mac.clang.python38.release.PyRosetta.Release mac.clang.python39.release.PyRosetta.Release ubuntu.clang.python310.release.PyRosetta.Release ubuntu.clang.python311.release.PyRosetta.Release ubuntu.clang.python312.release.PyRosetta.Release ubuntu.clang.python313.release.PyRosetta.Release ubuntu.clang.python38.release.PyRosetta.Release ubuntu.clang.python39.release.PyRosetta.Release release.PyRosetta.conda.Release release.source scientific.antibody_grafting.debug scientific.antibody_grafting linux.clang.score linux.gcc.score mac.clang.score scripts.pyrosetta scripts.rosetta.parse scripts.rosetta.validate scripts.rosetta.verify unit.addsan linux.clang.unit.release linux.gcc.unit.release mac.clang.unit.release unit.ubsan unit.valgrind gcc-10.gcc.cxx11thread.serialization.unit gcc-10.gcc.unit gcc-11.gcc.cxx11thread.serialization.unit gcc-11.gcc.unit gcc-9.gcc.cxx11thread.serialization.unit gcc-9.gcc.unit linux.clang.python310.unit linux.clang.python311.unit linux.clang.python312.unit linux.clang.python39.unit linux.gcc.python310.unit linux.gcc.python311.unit linux.gcc.python312.unit linux.gcc.python39.unit m1.clang.cxx11thread.serialization.unit m1.clang.python310.unit m1.clang.python311.unit m1.clang.python312.unit m1.clang.python313.unit m1.clang.python314.unit m1.clang.python39.unit m1.clang.unit mac.clang.cxx11thread.serialization.unit mac.clang.python310.unit mac.clang.python311.unit mac.clang.python312.unit mac.clang.python313.unit mac.clang.python314.unit mac.clang.python39.unit ubuntu-20.04.clang.cxx11thread.serialization.unit ubuntu-20.04.clang.python39.unit ubuntu-20.04.clang.unit ubuntu-20.04.gcc.cxx11thread.serialization.unit ubuntu-20.04.gcc.python39.unit ubuntu-20.04.gcc.unit ubuntu-22.04.clang.cxx11thread.serialization.unit ubuntu-22.04.clang.python39.unit ubuntu-22.04.clang.unit ubuntu-22.04.gcc.cxx11thread.serialization.unit ubuntu-22.04.gcc.python39.unit ubuntu-22.04.gcc.unit ubuntu-24.04.clang.cxx11thread.serialization.unit ubuntu-24.04.clang.unit ubuntu-24.04.gcc.cxx11thread.serialization.unit ubuntu-24.04.gcc.unit ubuntu.clang.cxx11thread.serialization.unit ubuntu.clang.python310.unit ubuntu.clang.python311.unit ubuntu.clang.python312.unit ubuntu.clang.python313.unit ubuntu.clang.python314.unit ubuntu.clang.python39.unit ubuntu.clang.unit ubuntu.gcc.cxx11thread.serialization.unit ubuntu.gcc.python310.unit ubuntu.gcc.python311.unit ubuntu.gcc.python312.unit ubuntu.gcc.python313.unit ubuntu.gcc.python314.unit ubuntu.gcc.python39.unit ubuntu.gcc.unit util.apps windows.build.debug windows.build.release

Improving `Pose.cache` dictionary getter and setter performance (#658) This PR aims to improve the performance of `Pose.cache` dictionary data accessors. Several code pathways run with O(N^2) (quadratic time complexity) behavior, and new functionally equivalent fast data accessor methods are introduced to run with O(N) (linear time complexity) behavior: - `Pose.cache.fast_items()` - `Pose.cache.fast_values()` - `Pose.cache.metrics.fast_items()` - `Pose.cache.metrics.fast_values()` - `Pose.cache.metrics.real.fast_items()` - `Pose.cache.metrics.string.fast_values()` - `Pose.cache.metrics.composite_real.fast_items()` - `Pose.cache.metrics.composite_real.fast_values()` - `Pose.cache.metrics.composite_string.fast_items()` - `Pose.cache.metrics.composite_string.fast_values()` - `Pose.cache.metrics.per_residue_real.fast_items()` - `Pose.cache.metrics.per_residue_real.fast_values()` - `Pose.cache.metrics.per_residue_string.fast_items()` - `Pose.cache.metrics.per_residue_string.fast_values()` - `Pose.cache.metrics.per_residue_probabilities.fast_items()` - `Pose.cache.metrics.per_residue_probabilities.fast_values()` - `Pose.cache.extra.fast_items()` - `Pose.cache.extra.fast_values()` - `Pose.cache.extra.real.fast_items()` - `Pose.cache.extra.real.fast_values()` - `Pose.cache.extra.string.fast_items()` - `Pose.cache.extra.string.fast_values()` - `Pose.cache.energies.fast_items()` - `Pose.cache.energies.fast_values()` Users must update their API calls to take advantage of these upgrades: `dict(pose.cache)` -> `dict(pose.cache.fast_items())`, etc. These improvements are only really noticable when there are hundreds to thousands of scores cached in the `Pose.cache` dictionary. The basis for the performance improvement is the following: - `dict(pose.cache)` relies on `__iter__` (returns `pose.cache.all`) + `__getitem__(key)` (returns `maybe_decode(pose.cache.all[key])`), where it materializes the full scores dictionary for each key (O(N^2)). - Instead, `dict(pose.cache.fast_items())` relies on simply `for k, v in pose.cache.all.items(); yield k, maybe_decode(v)`, so the full scores dictionary is materialized once for all keys (O(N)). - It's also worth noting that the deprecated `Pose.scores` dictionary (note `scores` not `cache`) has always performed with quadratic time complexity (O(N^2)), and does not contain `Pose.scores.fast_items()` or `Pose.scores.fast_values()` methods. This PR also makes the `Pose.cache.all_scores` property run with O(N) behavior, and removes an unnecessary argument from a private method: `self._has_sm_data(pose)` -> `self._has_sm_data()`. Additionally, this PR provides two new fast setter methods for mappables (avoiding the relatively slow `Pose.cache.metrics` cleanup after each item is set with `__setitem__`, and instead only performing one cleanup at the end): - `Pose.cache.metrics.real.set_mappable()` - `Pose.cache.metrics.string.set_mappable()` Micro-updates to the `PyRosettaCluster` interface are made to take advantage of these performance improvements.

...
Test: linux.gcc.mpi.serialization.integration.mpi

Failed sub-tests (click for more details):
replica_docking
Test: linux.clang.integration.tutorials

Failed sub-tests (click for more details):
input_and_output
Test: linux.clang.maintenance.documentation

 View log

Loading...

 View log in dialog  View log in log in separate window


branch: rosetta:main 「№62257」
Commited by: Rocco Moretti
GitHub commit link: 「91e8dceb14197d72」
Difference from previous tested commit:  code diff
Commit date: 2026-05-15 16:50:12
linux.clang linux.gcc linux.srlz mac.clang
debug
release
unit
PyRosetta.notebook gcc-9.gcc.python37.PyRosetta.unit m1.clang.python310.PyRosetta.unit m1.clang.python311.PyRosetta.unit m1.clang.python312.PyRosetta.unit m1.clang.python313.PyRosetta.unit m1.clang.python314.PyRosetta.unit m1.clang.python38.PyRosetta.unit m1.clang.python39.PyRosetta.unit mac.clang.python310.PyRosetta.unit mac.clang.python311.PyRosetta.unit mac.clang.python312.PyRosetta.unit mac.clang.python313.PyRosetta.unit mac.clang.python314.PyRosetta.unit mac.clang.python38.PyRosetta.unit mac.clang.python39.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-20.04.clang.python310.PyRosetta.unit ubuntu-20.04.clang.python311.PyRosetta.unit ubuntu-20.04.clang.python312.PyRosetta.unit ubuntu-20.04.clang.python313.PyRosetta.unit ubuntu-20.04.clang.python314.PyRosetta.unit ubuntu-20.04.clang.python39.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-20.04.gcc.python310.PyRosetta.unit ubuntu-20.04.gcc.python311.PyRosetta.unit ubuntu-20.04.gcc.python312.PyRosetta.unit ubuntu-20.04.gcc.python313.PyRosetta.unit ubuntu-20.04.gcc.python314.PyRosetta.unit ubuntu-20.04.gcc.python39.PyRosetta.unit ubuntu-22.04.clang.cxx11thread.serialization.PyRosetta.unit ubuntu-22.04.clang.python310.PyRosetta.unit ubuntu-22.04.clang.python311.PyRosetta.unit ubuntu-22.04.clang.python312.PyRosetta.unit ubuntu-22.04.clang.python313.PyRosetta.unit ubuntu-22.04.clang.python314.PyRosetta.unit ubuntu-22.04.clang.python39.PyRosetta.unit ubuntu-22.04.gcc.cxx11thread.serialization.PyRosetta.unit ubuntu-22.04.gcc.python310.PyRosetta.unit ubuntu-22.04.gcc.python311.PyRosetta.unit ubuntu-22.04.gcc.python312.PyRosetta.unit ubuntu-22.04.gcc.python313.PyRosetta.unit ubuntu-22.04.gcc.python314.PyRosetta.unit ubuntu-22.04.gcc.python39.PyRosetta.unit ubuntu-24.04.clang.cxx11thread.serialization.PyRosetta.unit ubuntu-24.04.clang.python310.PyRosetta.unit ubuntu-24.04.clang.python311.PyRosetta.unit ubuntu-24.04.clang.python312.PyRosetta.unit ubuntu-24.04.clang.python313.PyRosetta.unit ubuntu-24.04.clang.python314.PyRosetta.unit ubuntu-24.04.clang.python39.PyRosetta.unit ubuntu-24.04.gcc.cxx11thread.serialization.PyRosetta.unit ubuntu-24.04.gcc.python310.PyRosetta.unit ubuntu-24.04.gcc.python311.PyRosetta.unit ubuntu-24.04.gcc.python312.PyRosetta.unit ubuntu-24.04.gcc.python313.PyRosetta.unit ubuntu-24.04.gcc.python314.PyRosetta.unit ubuntu-24.04.gcc.python39.PyRosetta.unit ubuntu.clang.cxx11thread.serialization.python38.PyRosetta.unit ubuntu.clang.python310.PyRosetta.unit ubuntu.clang.python311.PyRosetta.unit ubuntu.clang.python312.PyRosetta.unit ubuntu.clang.python313.PyRosetta.unit ubuntu.clang.python314.PyRosetta.unit ubuntu.clang.python39.PyRosetta.unit ubuntu.gcc.python310.PyRosetta.unit ubuntu.gcc.python311.PyRosetta.unit ubuntu.gcc.python312.PyRosetta.unit ubuntu.gcc.python313.PyRosetta.unit ubuntu.gcc.python314.PyRosetta.unit ubuntu.gcc.python39.PyRosetta.unit build.clean.debug alpine.gcc.build.debug clang-10.clang.cxx11thread.mpi.serialization.tensorflow.build.debug gcc-10.gcc.build.debug gcc-10.gcc.cxx11thread.serialization.build.debug gcc-11.gcc.build.debug gcc-11.gcc.cxx11thread.serialization.build.debug gcc-9.gcc.build.debug gcc-9.gcc.cxx11thread.serialization.build.debug icc.icc.build.debug linux.clang.bcl.build.debug linux.clang.hdf5.build.debug mysql postgres linux.clang.python310.build.debug linux.clang.python311.build.debug linux.clang.python312.build.debug linux.clang.python39.build.debug linux.zeromq.debug linux.gcc.bcl.build.debug mpi mpi.serialization linux.gcc.python310.build.debug linux.gcc.python311.build.debug linux.gcc.python312.build.debug linux.gcc.python39.build.debug m1.clang.build.debug m1.clang.cxx11thread.serialization.build.debug m1.clang.python310.build.debug m1.clang.python311.build.debug m1.clang.python312.build.debug m1.clang.python313.build.debug m1.clang.python314.build.debug m1.clang.python39.build.debug mac.clang.bcl.build.debug mac.clang.cxx11thread.serialization.build.debug OpenCL mac.clang.python310.build.debug mac.clang.python311.build.debug mac.clang.python312.build.debug mac.clang.python313.build.debug mac.clang.python314.build.debug mac.clang.python39.build.debug ubuntu-20.04.clang.build.debug ubuntu-20.04.clang.cxx11thread.serialization.build.debug ubuntu-20.04.gcc.build.debug ubuntu-20.04.gcc.cxx11thread.serialization.build.debug ubuntu-22.04.clang.build.debug ubuntu-22.04.clang.cxx11thread.serialization.build.debug ubuntu-22.04.gcc.build.debug ubuntu-22.04.gcc.cxx11thread.serialization.build.debug ubuntu-24.04.clang.build.debug ubuntu-24.04.clang.cxx11thread.serialization.build.debug ubuntu-24.04.gcc.build.debug ubuntu-24.04.gcc.cxx11thread.serialization.build.debug ubuntu.clang.bcl.build.debug ubuntu.clang.build.debug ubuntu.clang.cxx11thread.serialization.build.debug ubuntu.clang.python310.build.debug ubuntu.clang.python311.build.debug ubuntu.clang.python312.build.debug ubuntu.clang.python313.build.debug ubuntu.clang.python314.build.debug ubuntu.clang.python39.build.debug ubuntu.gcc.bcl.build.debug ubuntu.gcc.build.debug ubuntu.gcc.cxx11thread.serialization.build.debug ubuntu.gcc.python310.build.debug ubuntu.gcc.python311.build.debug ubuntu.gcc.python312.build.debug ubuntu.gcc.python313.build.debug ubuntu.gcc.python314.build.debug ubuntu.gcc.python39.build.debug build.header build.levels build.ninja_debug graphics gcc-10.gcc.build.release gcc-10.gcc.cxx11thread.serialization.build.release gcc-11.gcc.build.release gcc-11.gcc.cxx11thread.serialization.build.release gcc-9.gcc.build.release gcc-9.gcc.cxx11thread.serialization.build.release linux.clang.python310.build.release linux.clang.python311.build.release linux.clang.python312.build.release linux.clang.python39.build.release linux.gcc.python310.build.release linux.gcc.python311.build.release linux.gcc.python312.build.release linux.gcc.python39.build.release static m1.clang.build.release m1.clang.cxx11thread.serialization.build.release m1.clang.python310.build.release m1.clang.python311.build.release m1.clang.python312.build.release m1.clang.python313.build.release m1.clang.python314.build.release m1.clang.python39.build.release mac.clang.cxx11thread.serialization.build.release mac.clang.python310.build.release mac.clang.python311.build.release mac.clang.python312.build.release mac.clang.python313.build.release mac.clang.python314.build.release mac.clang.python39.build.release mac.clang.static.build.release torch.gcc.torch.python39.build.release ubuntu-20.04.clang.build.release ubuntu-20.04.clang.cxx11thread.serialization.build.release ubuntu-20.04.gcc.build.release ubuntu-20.04.gcc.cxx11thread.serialization.build.release ubuntu-22.04.clang.build.release ubuntu-22.04.clang.cxx11thread.serialization.build.release ubuntu-22.04.gcc.build.release ubuntu-22.04.gcc.cxx11thread.serialization.build.release ubuntu-24.04.clang.build.release ubuntu-24.04.clang.cxx11thread.serialization.build.release ubuntu-24.04.gcc.build.release ubuntu-24.04.gcc.cxx11thread.serialization.build.release ubuntu.clang.build.release ubuntu.clang.cxx11thread.serialization.build.release ubuntu.clang.python310.build.release ubuntu.clang.python311.build.release ubuntu.clang.python312.build.release ubuntu.clang.python313.build.release ubuntu.clang.python314.build.release ubuntu.clang.python39.build.release ubuntu.gcc.build.release ubuntu.gcc.cxx11thread.serialization.build.release ubuntu.gcc.python310.build.release ubuntu.gcc.python311.build.release ubuntu.gcc.python312.build.release ubuntu.gcc.python313.build.release ubuntu.gcc.python314.build.release ubuntu.gcc.python39.build.release beautification code_quality.clang_analysis code_quality.clang_tidy code_quality.cppcheck code_quality.merge_size serialization code_quality.submodule_regression integration.addsan integration.mpi integration.release_debug integration.tensorflow integration.thread integration.torch integration.tutorials integration.ubsan integration.valgrind integration performance profile m1.clang.python310.release.PyRosetta.MinSizeRel m1.clang.python311.release.PyRosetta.MinSizeRel m1.clang.python312.release.PyRosetta.MinSizeRel m1.clang.python313.release.PyRosetta.MinSizeRel m1.clang.python38.release.PyRosetta.MinSizeRel m1.clang.python39.release.PyRosetta.MinSizeRel mac.clang.python310.release.PyRosetta.MinSizeRel mac.clang.python311.release.PyRosetta.MinSizeRel mac.clang.python312.release.PyRosetta.MinSizeRel mac.clang.python313.release.PyRosetta.MinSizeRel mac.clang.python38.release.PyRosetta.MinSizeRel mac.clang.python39.release.PyRosetta.MinSizeRel ubuntu.clang.python310.release.PyRosetta.MinSizeRel ubuntu.clang.python311.release.PyRosetta.MinSizeRel ubuntu.clang.python312.release.PyRosetta.MinSizeRel ubuntu.clang.python313.release.PyRosetta.MinSizeRel ubuntu.clang.python38.release.PyRosetta.MinSizeRel ubuntu.clang.python39.release.PyRosetta.MinSizeRel m1.clang.python310.release.PyRosetta.Release m1.clang.python311.release.PyRosetta.Release m1.clang.python312.release.PyRosetta.Release m1.clang.python313.release.PyRosetta.Release m1.clang.python38.release.PyRosetta.Release m1.clang.python39.release.PyRosetta.Release mac.clang.python310.release.PyRosetta.Release mac.clang.python311.release.PyRosetta.Release mac.clang.python312.release.PyRosetta.Release mac.clang.python313.release.PyRosetta.Release mac.clang.python38.release.PyRosetta.Release mac.clang.python39.release.PyRosetta.Release ubuntu.clang.python310.release.PyRosetta.Release ubuntu.clang.python311.release.PyRosetta.Release ubuntu.clang.python312.release.PyRosetta.Release ubuntu.clang.python313.release.PyRosetta.Release ubuntu.clang.python38.release.PyRosetta.Release ubuntu.clang.python39.release.PyRosetta.Release release.PyRosetta.conda.Release release.source scientific.abinitio_RosettaNMR_rdc scientific.cofactor_binding_sites.debug scientific.enzyme_design.debug scientific.enzyme_design scientific.glycan_structure_prediction.debug scientific.loop_modeling_ccd_12res.debug scientific.loop_modeling_ccd_12res scientific.make_fragments.debug scientific.mp_symdock.debug scientific.protein_data_bank_diagnostic.full scientific.relax_fast.debug scientific.relax_fast_5iter.debug scientific.rna_denovo_favorites.debug scientific.rna_denovo_favorites scientific.sewing.debug linux.clang.score linux.gcc.score mac.clang.score scripts.pyrosetta scripts.rosetta.parse scripts.rosetta.validate scripts.rosetta.verify unit.addsan linux.clang.unit.release linux.gcc.unit.release mac.clang.unit.release unit.ubsan unit.valgrind gcc-10.gcc.cxx11thread.serialization.unit gcc-10.gcc.unit gcc-11.gcc.cxx11thread.serialization.unit gcc-11.gcc.unit gcc-9.gcc.cxx11thread.serialization.unit gcc-9.gcc.unit linux.clang.python310.unit linux.clang.python311.unit linux.clang.python312.unit linux.clang.python39.unit linux.gcc.python310.unit linux.gcc.python311.unit linux.gcc.python312.unit linux.gcc.python39.unit m1.clang.cxx11thread.serialization.unit m1.clang.python310.unit m1.clang.python311.unit m1.clang.python312.unit m1.clang.python313.unit m1.clang.python314.unit m1.clang.python39.unit m1.clang.unit mac.clang.cxx11thread.serialization.unit mac.clang.python310.unit mac.clang.python311.unit mac.clang.python312.unit mac.clang.python313.unit mac.clang.python314.unit mac.clang.python39.unit ubuntu-20.04.clang.cxx11thread.serialization.unit ubuntu-20.04.clang.python39.unit ubuntu-20.04.clang.unit ubuntu-20.04.gcc.cxx11thread.serialization.unit ubuntu-20.04.gcc.python39.unit ubuntu-20.04.gcc.unit ubuntu-22.04.clang.cxx11thread.serialization.unit ubuntu-22.04.clang.python39.unit ubuntu-22.04.clang.unit ubuntu-22.04.gcc.cxx11thread.serialization.unit ubuntu-22.04.gcc.python39.unit ubuntu-22.04.gcc.unit ubuntu-24.04.clang.cxx11thread.serialization.unit ubuntu-24.04.clang.unit ubuntu-24.04.gcc.cxx11thread.serialization.unit ubuntu-24.04.gcc.unit ubuntu.clang.cxx11thread.serialization.unit ubuntu.clang.python310.unit ubuntu.clang.python311.unit ubuntu.clang.python312.unit ubuntu.clang.python313.unit ubuntu.clang.python314.unit ubuntu.clang.python39.unit ubuntu.clang.unit ubuntu.gcc.cxx11thread.serialization.unit ubuntu.gcc.python310.unit ubuntu.gcc.python311.unit ubuntu.gcc.python312.unit ubuntu.gcc.python313.unit ubuntu.gcc.python314.unit ubuntu.gcc.python39.unit ubuntu.gcc.unit util.apps windows.build.debug windows.build.release

Update LICENSE.md (#702) Provide the updated non-commercial license terms, as vetted and approved by UW.

...
Test: linux.gcc.mpi.serialization.integration.mpi

Failed sub-tests (click for more details):
replica_docking
Test: linux.clang.integration.tutorials

Failed sub-tests (click for more details):
input_and_output
Test: ubuntu-20.04.clang.python36.scientific.protein_data_bank_diagnostic.full

 View log

Loading...

 View log in dialog  View log in log in separate window


branch: rosetta:main 「№62256」
Commited by: Sergey Lyskov
GitHub commit link: 「b2a0ff32f3ee0182」
Difference from previous tested commit:  code diff
Commit date: 2026-05-13 15:36:11
linux.clang linux.gcc linux.srlz mac.clang
debug
release
unit
PyRosetta.notebook gcc-9.gcc.python37.PyRosetta.unit m1.clang.python310.PyRosetta.unit m1.clang.python311.PyRosetta.unit m1.clang.python312.PyRosetta.unit m1.clang.python313.PyRosetta.unit m1.clang.python314.PyRosetta.unit m1.clang.python38.PyRosetta.unit m1.clang.python39.PyRosetta.unit mac.clang.python310.PyRosetta.unit mac.clang.python311.PyRosetta.unit mac.clang.python312.PyRosetta.unit mac.clang.python313.PyRosetta.unit mac.clang.python314.PyRosetta.unit mac.clang.python38.PyRosetta.unit mac.clang.python39.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-20.04.clang.python310.PyRosetta.unit ubuntu-20.04.clang.python311.PyRosetta.unit ubuntu-20.04.clang.python313.PyRosetta.unit ubuntu-20.04.clang.python314.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-20.04.gcc.python310.PyRosetta.unit ubuntu-20.04.gcc.python311.PyRosetta.unit ubuntu-20.04.gcc.python312.PyRosetta.unit ubuntu-20.04.gcc.python314.PyRosetta.unit ubuntu-20.04.gcc.python39.PyRosetta.unit ubuntu-22.04.clang.python311.PyRosetta.unit ubuntu-22.04.clang.python312.PyRosetta.unit ubuntu-22.04.clang.python313.PyRosetta.unit ubuntu-22.04.clang.python314.PyRosetta.unit ubuntu-22.04.clang.python39.PyRosetta.unit ubuntu-22.04.gcc.cxx11thread.serialization.PyRosetta.unit ubuntu-22.04.gcc.python311.PyRosetta.unit ubuntu-22.04.gcc.python312.PyRosetta.unit ubuntu-22.04.gcc.python313.PyRosetta.unit ubuntu-22.04.gcc.python314.PyRosetta.unit ubuntu-22.04.gcc.python39.PyRosetta.unit ubuntu-24.04.clang.cxx11thread.serialization.PyRosetta.unit ubuntu-24.04.clang.python310.PyRosetta.unit ubuntu-24.04.clang.python311.PyRosetta.unit ubuntu-24.04.clang.python312.PyRosetta.unit ubuntu-24.04.clang.python313.PyRosetta.unit ubuntu-24.04.clang.python314.PyRosetta.unit ubuntu-24.04.clang.python39.PyRosetta.unit ubuntu-24.04.gcc.cxx11thread.serialization.PyRosetta.unit ubuntu-24.04.gcc.python310.PyRosetta.unit ubuntu-24.04.gcc.python311.PyRosetta.unit ubuntu-24.04.gcc.python312.PyRosetta.unit ubuntu-24.04.gcc.python313.PyRosetta.unit ubuntu-24.04.gcc.python314.PyRosetta.unit ubuntu-24.04.gcc.python39.PyRosetta.unit ubuntu.clang.cxx11thread.serialization.python38.PyRosetta.unit ubuntu.clang.python310.PyRosetta.unit ubuntu.clang.python311.PyRosetta.unit ubuntu.clang.python312.PyRosetta.unit ubuntu.clang.python313.PyRosetta.unit ubuntu.clang.python314.PyRosetta.unit ubuntu.clang.python39.PyRosetta.unit ubuntu.gcc.python310.PyRosetta.unit ubuntu.gcc.python311.PyRosetta.unit ubuntu.gcc.python312.PyRosetta.unit ubuntu.gcc.python313.PyRosetta.unit ubuntu.gcc.python314.PyRosetta.unit ubuntu.gcc.python39.PyRosetta.unit build.clean.debug alpine.gcc.build.debug clang-10.clang.cxx11thread.mpi.serialization.tensorflow.build.debug gcc-10.gcc.build.debug gcc-10.gcc.cxx11thread.serialization.build.debug gcc-11.gcc.build.debug gcc-11.gcc.cxx11thread.serialization.build.debug gcc-9.gcc.build.debug gcc-9.gcc.cxx11thread.serialization.build.debug icc.icc.build.debug linux.clang.bcl.build.debug linux.clang.hdf5.build.debug mysql postgres linux.clang.python310.build.debug linux.clang.python311.build.debug linux.clang.python312.build.debug linux.clang.python39.build.debug linux.zeromq.debug linux.gcc.bcl.build.debug mpi mpi.serialization linux.gcc.python310.build.debug linux.gcc.python311.build.debug linux.gcc.python312.build.debug linux.gcc.python39.build.debug m1.clang.build.debug m1.clang.cxx11thread.serialization.build.debug m1.clang.python310.build.debug m1.clang.python311.build.debug m1.clang.python312.build.debug m1.clang.python313.build.debug m1.clang.python314.build.debug m1.clang.python39.build.debug mac.clang.bcl.build.debug mac.clang.cxx11thread.serialization.build.debug OpenCL mac.clang.python310.build.debug mac.clang.python311.build.debug mac.clang.python312.build.debug mac.clang.python313.build.debug mac.clang.python314.build.debug mac.clang.python39.build.debug ubuntu-20.04.clang.build.debug ubuntu-20.04.clang.cxx11thread.serialization.build.debug ubuntu-20.04.gcc.cxx11thread.serialization.build.debug ubuntu-22.04.clang.build.debug ubuntu-22.04.clang.cxx11thread.serialization.build.debug ubuntu-22.04.gcc.build.debug ubuntu-22.04.gcc.cxx11thread.serialization.build.debug ubuntu-24.04.clang.build.debug ubuntu-24.04.clang.cxx11thread.serialization.build.debug ubuntu-24.04.gcc.build.debug ubuntu-24.04.gcc.cxx11thread.serialization.build.debug ubuntu.clang.bcl.build.debug ubuntu.clang.build.debug ubuntu.clang.cxx11thread.serialization.build.debug ubuntu.clang.python310.build.debug ubuntu.clang.python311.build.debug ubuntu.clang.python312.build.debug ubuntu.clang.python313.build.debug ubuntu.clang.python314.build.debug ubuntu.clang.python39.build.debug ubuntu.gcc.bcl.build.debug ubuntu.gcc.build.debug ubuntu.gcc.cxx11thread.serialization.build.debug ubuntu.gcc.python310.build.debug ubuntu.gcc.python311.build.debug ubuntu.gcc.python312.build.debug ubuntu.gcc.python313.build.debug ubuntu.gcc.python314.build.debug ubuntu.gcc.python39.build.debug build.header build.levels build.ninja_debug graphics gcc-10.gcc.build.release gcc-10.gcc.cxx11thread.serialization.build.release gcc-11.gcc.build.release gcc-11.gcc.cxx11thread.serialization.build.release gcc-9.gcc.build.release gcc-9.gcc.cxx11thread.serialization.build.release linux.clang.python310.build.release linux.clang.python311.build.release linux.clang.python312.build.release linux.clang.python39.build.release linux.gcc.python310.build.release linux.gcc.python311.build.release linux.gcc.python312.build.release linux.gcc.python39.build.release static m1.clang.build.release m1.clang.cxx11thread.serialization.build.release m1.clang.python310.build.release m1.clang.python311.build.release m1.clang.python312.build.release m1.clang.python313.build.release m1.clang.python314.build.release m1.clang.python39.build.release mac.clang.cxx11thread.serialization.build.release mac.clang.python310.build.release mac.clang.python311.build.release mac.clang.python312.build.release mac.clang.python313.build.release mac.clang.python314.build.release mac.clang.python39.build.release mac.clang.static.build.release ubuntu-20.04.clang.build.release ubuntu-20.04.clang.cxx11thread.serialization.build.release ubuntu-20.04.gcc.build.release ubuntu-20.04.gcc.cxx11thread.serialization.build.release ubuntu-22.04.clang.build.release ubuntu-22.04.clang.cxx11thread.serialization.build.release ubuntu-22.04.gcc.build.release ubuntu-22.04.gcc.cxx11thread.serialization.build.release ubuntu-24.04.clang.build.release ubuntu-24.04.clang.cxx11thread.serialization.build.release ubuntu-24.04.gcc.build.release ubuntu-24.04.gcc.cxx11thread.serialization.build.release ubuntu.clang.build.release ubuntu.clang.cxx11thread.serialization.build.release ubuntu.clang.python310.build.release ubuntu.clang.python311.build.release ubuntu.clang.python312.build.release ubuntu.clang.python313.build.release ubuntu.clang.python314.build.release ubuntu.clang.python39.build.release ubuntu.gcc.build.release ubuntu.gcc.cxx11thread.serialization.build.release ubuntu.gcc.python310.build.release ubuntu.gcc.python311.build.release ubuntu.gcc.python312.build.release ubuntu.gcc.python313.build.release ubuntu.gcc.python314.build.release ubuntu.gcc.python39.build.release beautification code_quality.clang_analysis code_quality.clang_tidy code_quality.cppcheck code_quality.merge_size serialization code_quality.submodule_regression integration.addsan integration.mpi integration.release_debug integration.tensorflow integration.thread integration.torch integration.tutorials integration.ubsan integration performance profile m1.clang.python310.release.PyRosetta.MinSizeRel m1.clang.python311.release.PyRosetta.MinSizeRel m1.clang.python312.release.PyRosetta.MinSizeRel m1.clang.python313.release.PyRosetta.MinSizeRel m1.clang.python38.release.PyRosetta.MinSizeRel m1.clang.python39.release.PyRosetta.MinSizeRel mac.clang.python310.release.PyRosetta.MinSizeRel mac.clang.python311.release.PyRosetta.MinSizeRel mac.clang.python312.release.PyRosetta.MinSizeRel mac.clang.python313.release.PyRosetta.MinSizeRel mac.clang.python38.release.PyRosetta.MinSizeRel mac.clang.python39.release.PyRosetta.MinSizeRel ubuntu.clang.python311.release.PyRosetta.MinSizeRel ubuntu.clang.python313.release.PyRosetta.MinSizeRel ubuntu.clang.python38.release.PyRosetta.MinSizeRel ubuntu.clang.python39.release.PyRosetta.MinSizeRel m1.clang.python310.release.PyRosetta.Release m1.clang.python311.release.PyRosetta.Release m1.clang.python312.release.PyRosetta.Release m1.clang.python313.release.PyRosetta.Release m1.clang.python38.release.PyRosetta.Release m1.clang.python39.release.PyRosetta.Release mac.clang.python310.release.PyRosetta.Release mac.clang.python311.release.PyRosetta.Release mac.clang.python312.release.PyRosetta.Release mac.clang.python313.release.PyRosetta.Release mac.clang.python38.release.PyRosetta.Release mac.clang.python39.release.PyRosetta.Release ubuntu.clang.python310.release.PyRosetta.Release ubuntu.clang.python311.release.PyRosetta.Release ubuntu.clang.python312.release.PyRosetta.Release ubuntu.clang.python313.release.PyRosetta.Release ubuntu.clang.python38.release.PyRosetta.Release ubuntu.clang.python39.release.PyRosetta.Release release.source scientific.RosettaCM.debug scientific.abinitio_RosettaNMR_pcs scientific.antibody_h3_modeling.debug scientific.antibody_h3_modeling scientific.antibody_snugdock.debug scientific.design_fast.debug scientific.design_fast scientific.glycan_dock.debug scientific.glycan_structure_prediction scientific.ligand_docking scientific.loop_modeling_kic_12res scientific.loop_modeling_kic_fragments_12res.debug scientific.loop_modeling_ngk_12res.debug scientific.mp_domain_assembly scientific.mp_f19_decoy_discrimination.debug scientific.mp_f19_decoy_discrimination scientific.mp_f19_sequence_recovery scientific.mp_f19_tilt_angle.debug scientific.mp_f19_tilt_angle scientific.mp_relax scientific.protein_data_bank_diagnostic.cif scientific.relax_cartesian.debug scientific.simple_cycpep_predict.debug scientific.simple_cycpep_predict scientific.stepwise_rna_favorites linux.clang.score linux.gcc.score mac.clang.score scripts.pyrosetta scripts.rosetta.parse scripts.rosetta.validate scripts.rosetta.verify unit.addsan linux.clang.unit.release linux.gcc.unit.release mac.clang.unit.release unit.ubsan gcc-10.gcc.cxx11thread.serialization.unit gcc-10.gcc.unit gcc-11.gcc.cxx11thread.serialization.unit gcc-11.gcc.unit gcc-9.gcc.cxx11thread.serialization.unit gcc-9.gcc.unit linux.clang.python310.unit linux.clang.python311.unit linux.clang.python312.unit linux.clang.python39.unit linux.gcc.python310.unit linux.gcc.python311.unit linux.gcc.python312.unit linux.gcc.python39.unit m1.clang.cxx11thread.serialization.unit m1.clang.python310.unit m1.clang.python311.unit m1.clang.python312.unit m1.clang.python313.unit m1.clang.python314.unit m1.clang.python39.unit m1.clang.unit mac.clang.cxx11thread.serialization.unit mac.clang.python310.unit mac.clang.python311.unit mac.clang.python312.unit mac.clang.python313.unit mac.clang.python314.unit mac.clang.python39.unit ubuntu-20.04.clang.cxx11thread.serialization.unit ubuntu-20.04.clang.unit ubuntu-20.04.gcc.cxx11thread.serialization.unit ubuntu-20.04.gcc.python39.unit ubuntu-20.04.gcc.unit ubuntu-22.04.clang.cxx11thread.serialization.unit ubuntu-22.04.gcc.python39.unit ubuntu-22.04.gcc.unit ubuntu-24.04.clang.cxx11thread.serialization.unit ubuntu-24.04.clang.unit ubuntu-24.04.gcc.cxx11thread.serialization.unit ubuntu-24.04.gcc.unit ubuntu.clang.cxx11thread.serialization.unit ubuntu.clang.python310.unit ubuntu.clang.python311.unit ubuntu.clang.python312.unit ubuntu.clang.python313.unit ubuntu.clang.python314.unit ubuntu.clang.python39.unit ubuntu.clang.unit ubuntu.gcc.python310.unit ubuntu.gcc.python311.unit ubuntu.gcc.python312.unit ubuntu.gcc.python313.unit ubuntu.gcc.python314.unit ubuntu.gcc.python39.unit ubuntu.gcc.unit util.apps windows.build.debug windows.build.release

Revert "Apply Rule of Zero to utility/keys container family" (#703) Reverts RosettaCommons/rosetta#691

...
Test: ubuntu.gcc.integration.addsan

Failed sub-tests (click for more details):
ligand_dock_ensemble
Test: linux.gcc.mpi.serialization.integration.mpi

Failed sub-tests (click for more details):
replica_docking
Test: linux.clang.integration.tutorials

Failed sub-tests (click for more details):
input_and_output
Test: ubuntu-20.04.clang.python36.scientific.protein_data_bank_diagnostic.cif

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: ubuntu-20.04.gcc.cxx11thread.mpi.serialization.python36.scientific.simple_cycpep_predict

 View log

Loading...

 View log in dialog  View log in log in separate window


branch: rosetta:main 「№62255」
Commited by: lyskov-ai
GitHub commit link: 「99c7eda00cda88e1」
Difference from previous tested commit:  code diff
Commit date: 2026-05-13 11:37:17
linux.clang linux.gcc linux.srlz mac.clang
debug
release
unit
mac.clang.python313.PyRosetta.unit mac.clang.python38.PyRosetta.unit ubuntu-20.04.clang.python312.PyRosetta.unit ubuntu-20.04.clang.python39.PyRosetta.unit ubuntu-22.04.clang.python310.PyRosetta.unit ubuntu-22.04.gcc.python310.PyRosetta.unit ubuntu.clang.cxx11thread.serialization.python38.PyRosetta.unit mpi mpi.serialization m1.clang.python311.build.debug m1.clang.python314.build.debug ubuntu-20.04.gcc.build.debug build.header build.levels build.ninja_debug m1.clang.python311.build.release mac.clang.python311.build.release beautification code_quality.cppcheck code_quality.merge_size serialization code_quality.submodule_regression integration.mpi integration.release_debug integration.tensorflow integration.thread integration.torch integration performance profile m1.clang.python312.release.PyRosetta.MinSizeRel mac.clang.python310.release.PyRosetta.MinSizeRel ubuntu.clang.python310.release.PyRosetta.MinSizeRel m1.clang.python312.release.PyRosetta.Release mac.clang.python311.release.PyRosetta.Release release.PyRosetta.conda.Release scientific.RosettaCM scientific.docking_ensemble.debug scientific.fragments_picking.debug scientific.make_fragments scientific.protein_data_bank_diagnostic.cif scientific.simple_cycpep_predict linux.clang.score linux.gcc.score mac.clang.score scripts.pyrosetta scripts.rosetta.parse scripts.rosetta.validate scripts.rosetta.verify mac.clang.python310.unit mac.clang.python311.unit ubuntu-20.04.clang.python39.unit ubuntu-22.04.clang.python39.unit ubuntu-22.04.gcc.cxx11thread.serialization.unit ubuntu.gcc.cxx11thread.serialization.unit util.apps windows.build.debug windows.build.release

Apply Rule of Zero to BitSet and BitVector (#690) - `utility::BitSet<B>` and `utility::BitVector<B>` each had only a single value-type member (`std::set<B>` and `std::vector<bool>` respectively), no user-declared copy/move/assignment operators, and an explicit empty destructor. - The empty `~BitSet() {}` / `~BitVector() {}` did nothing the compiler-generated destructor wouldn't have done, and they suppressed the implicit move constructor and move assignment. - Remove the empty destructors so both class templates follow the Rule of Zero and gain implicit move support.

...
Test: linux.gcc.mpi.serialization.integration.mpi

Failed sub-tests (click for more details):
replica_docking
Test: ubuntu-20.04.clang.python36.scientific.protein_data_bank_diagnostic.cif

 View log

Loading...

 View log in dialog  View log in log in separate window


branch: rosetta:main 「№62254」
Commited by: lyskov-ai
GitHub commit link: 「dc594471462f126e」
Difference from previous tested commit:  code diff
Commit date: 2026-05-12 20:03:28
linux.clang linux.gcc linux.srlz mac.clang
debug
release
unit
m1.clang.python311.PyRosetta.unit mac.clang.python38.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.clang.python311.PyRosetta.unit ubuntu-20.04.gcc.python313.PyRosetta.unit ubuntu-22.04.clang.cxx11thread.serialization.PyRosetta.unit ubuntu-22.04.gcc.cxx11thread.serialization.PyRosetta.unit ubuntu-22.04.gcc.python39.PyRosetta.unit ubuntu.clang.cxx11thread.serialization.python38.PyRosetta.unit ubuntu.gcc.python314.PyRosetta.unit build.clean.debug mpi mpi.serialization m1.clang.python310.build.debug mac.clang.bcl.build.debug ubuntu.clang.cxx11thread.serialization.build.debug build.header build.levels build.ninja_debug m1.clang.cxx11thread.serialization.build.release mac.clang.python310.build.release mac.clang.python39.build.release ubuntu.gcc.python39.build.release beautification code_quality.cppcheck code_quality.merge_size serialization code_quality.submodule_regression integration.mpi integration.release_debug integration.tensorflow integration.thread integration.torch integration performance profile m1.clang.python310.release.PyRosetta.MinSizeRel m1.clang.python311.release.PyRosetta.MinSizeRel m1.clang.python313.release.PyRosetta.MinSizeRel m1.clang.python38.release.PyRosetta.MinSizeRel m1.clang.python39.release.PyRosetta.MinSizeRel mac.clang.python312.release.PyRosetta.MinSizeRel mac.clang.python313.release.PyRosetta.MinSizeRel mac.clang.python39.release.PyRosetta.MinSizeRel ubuntu.clang.python312.release.PyRosetta.MinSizeRel m1.clang.python310.release.PyRosetta.Release m1.clang.python313.release.PyRosetta.Release m1.clang.python38.release.PyRosetta.Release m1.clang.python39.release.PyRosetta.Release mac.clang.python310.release.PyRosetta.Release mac.clang.python312.release.PyRosetta.Release mac.clang.python313.release.PyRosetta.Release scientific.FlexPepDock.debug scientific.FlexPepDock scientific.abinitio_RosettaNMR_pcs.debug scientific.abinitio_RosettaNMR_rdc.debug scientific.antibody_grafting.debug scientific.antibody_grafting scientific.ddg_ala_scan.debug scientific.ddg_ala_scan scientific.docking.debug scientific.ligand_docking.debug scientific.loop_modeling_kic_12res.debug scientific.mp_dock.debug scientific.mp_f19_sequence_recovery.debug scientific.mp_symdock scientific.peptide_pnear_vs_ic50.debug scientific.protein_data_bank_diagnostic.cif scientific.simple_cycpep_predict linux.clang.score linux.gcc.score mac.clang.score scripts.pyrosetta scripts.rosetta.parse scripts.rosetta.validate scripts.rosetta.verify m1.clang.cxx11thread.serialization.unit m1.clang.python312.unit mac.clang.python39.unit ubuntu-22.04.clang.unit util.apps windows.build.debug windows.build.release

Apply Rule of Zero to disulfide energy neighbor iterators (#689) - Remove user-declared trivial (defaulted) destructors from the six disulfide neighbor iterator classes; the implicit virtual destructor inherited from `ResidueNeighborIterator` / `ResidueNeighborConstIterator` does the same job. - Modernize the old-style C++03 copy-assignment prevention (private undefined declaration) to a public `= delete` for the derived-type `operator=`. Behavior is unchanged: derived-derived assignment is still forbidden so all assignments flow through the polymorphic `operator=(BaseType const &)` override that downcasts and copies all members.

...
Test: linux.gcc.mpi.serialization.integration.mpi

Failed sub-tests (click for more details):
replica_docking
Test: ubuntu-20.04.clang.python36.scientific.protein_data_bank_diagnostic.cif

 View log

Loading...

 View log in dialog  View log in log in separate window


branch: rosetta:main 「№62253」
Commited by: lyskov-ai
GitHub commit link: 「56952ba6365ea7c5」
Difference from previous tested commit:  code diff
Commit date: 2026-05-12 19:43:33
linux.clang linux.gcc linux.srlz mac.clang
debug
release
unit
mac.clang.python38.PyRosetta.unit ubuntu.clang.cxx11thread.serialization.python38.PyRosetta.unit mpi mpi.serialization build.header build.levels build.ninja_debug beautification code_quality.cppcheck code_quality.merge_size serialization code_quality.submodule_regression integration.mpi integration.release_debug integration.tensorflow integration.thread integration.torch integration performance profile linux.clang.score linux.gcc.score mac.clang.score scripts.pyrosetta scripts.rosetta.parse scripts.rosetta.validate scripts.rosetta.verify util.apps windows.build.debug windows.build.release

Apply Rule of Zero to core signal event hierarchies (#688) Each of the simple polymorphic signal-event classes in `core/conformation/signals/` and `core/pose/signals/` had a hand-written copy constructor, copy assignment, and empty destructor that all just did what the compiler-generated versions would do. Removing the boilerplate brings them in line with the Rule of Zero while preserving the polymorphic base destructors as `= default`. Touched: - `core/conformation/signals/`: `GeneralEvent`, `ConnectionEvent`, `IdentityEvent`, `XYZEvent` - `core/pose/signals/`: `GeneralEvent`, `DestructionEvent`, `ConformationEvent`, `EnergyEvent` `LengthEvent` is intentionally left alone — its copy constructor and copy assignment invoke `check_consistency()` in debug builds, so they have real semantic content beyond member-wise copy.

...
Test: linux.gcc.mpi.serialization.integration.mpi

Failed sub-tests (click for more details):
replica_docking
Test: mac.clang.python39.integration

Failed sub-tests (click for more details):
mp_f19_relax


branch: rosetta:main 「№62252」
Commited by: lyskov-ai
GitHub commit link: 「70f4dda9098bf1ae」
Difference from previous tested commit:  code diff
Commit date: 2026-05-12 19:31:40
linux.clang linux.gcc linux.srlz mac.clang
debug
release
unit
mac.clang.python38.PyRosetta.unit ubuntu.clang.cxx11thread.serialization.python38.PyRosetta.unit mpi mpi.serialization build.header build.levels build.ninja_debug beautification code_quality.cppcheck code_quality.merge_size serialization code_quality.submodule_regression integration.addsan integration.mpi integration.release_debug integration.tensorflow integration.thread integration.torch integration performance profile linux.clang.score linux.gcc.score mac.clang.score scripts.pyrosetta scripts.rosetta.parse scripts.rosetta.validate scripts.rosetta.verify util.apps windows.build.debug windows.build.release

Modernize copy prevention in core factory singletons and non-copyable classes (#685) - **SilentStructFactory, ConstraintFactory, SequenceFactory**: all inherit from `utility::SingletonBase`, which already `= delete`s copy construction and copy assignment. Removes the now-redundant private-but-unimplemented declarations from each derived class (pre-C++11 idiom). - **OrbitalsStatistics, AtomTreeDiff**: had private-but-undefined copy constructors (pre-C++11 idiom); replaced with explicit `= delete` on both copy constructor and copy assignment operator. No behaviour change; build-only verification is sufficient for pure copy-prevention modernisation.

...
Test: ubuntu.gcc.integration.addsan

Failed sub-tests (click for more details):
ligand_dock_ensemble
Test: linux.gcc.mpi.serialization.integration.mpi

Failed sub-tests (click for more details):
replica_docking
Test: mac.clang.python39.integration

Failed sub-tests (click for more details):
mp_f19_relax


branch: rosetta:main 「№62251」
Commited by: lyskov-ai
GitHub commit link: 「708ccac488292139」
Difference from previous tested commit:  code diff
Commit date: 2026-05-12 19:22:08
linux.clang linux.gcc linux.srlz mac.clang
debug
release
unit
mac.clang.python38.PyRosetta.unit ubuntu.clang.cxx11thread.serialization.python38.PyRosetta.unit mpi mpi.serialization build.header build.levels build.ninja_debug beautification code_quality.cppcheck code_quality.merge_size serialization code_quality.submodule_regression integration.mpi integration.release_debug integration.tensorflow integration.thread integration.torch integration performance profile scientific.protein_data_bank_diagnostic.cif scientific.simple_cycpep_predict linux.clang.score linux.gcc.score mac.clang.score scripts.pyrosetta scripts.rosetta.parse scripts.rosetta.validate scripts.rosetta.verify util.apps windows.build.debug windows.build.release

Default MetricValue special members (#684) - default no-op MetricValueBase destructor - default MetricValue default and copy constructors

...
Test: linux.gcc.mpi.serialization.integration.mpi

Failed sub-tests (click for more details):
replica_docking
Test: linux.clang.tensorflow.integration.tensorflow

Failed sub-tests (click for more details):
tensorflow_manager
Test: ubuntu-20.04.clang.python36.scientific.protein_data_bank_diagnostic.cif

 View log

Loading...

 View log in dialog  View log in log in separate window


branch: rosetta:main 「№62250」
Commited by: lyskov-ai
GitHub commit link: 「5b2367fe023896d5」
Difference from previous tested commit:  code diff
Commit date: 2026-05-12 19:16:15
linux.clang linux.gcc linux.srlz mac.clang
debug
release
unit
mac.clang.python38.PyRosetta.unit ubuntu.clang.cxx11thread.serialization.python38.PyRosetta.unit mpi mpi.serialization build.header build.levels build.ninja_debug beautification code_quality.cppcheck code_quality.merge_size serialization code_quality.submodule_regression integration.addsan integration.mpi integration.release_debug integration.tensorflow integration.thread integration.torch integration performance profile linux.clang.score linux.gcc.score mac.clang.score scripts.pyrosetta scripts.rosetta.parse scripts.rosetta.validate scripts.rosetta.verify util.apps windows.build.debug windows.build.release

Fix key map range indexing (#680) - fix ClassKeyMap and SmallKeyMap range constructor/assignment loops to visit the final 1-indexed element - add regression coverage for range construction and assignment preserving the final key

...
Test: ubuntu.gcc.integration.addsan

Failed sub-tests (click for more details):
ligand_dock_ensemble
Test: linux.gcc.mpi.serialization.integration.mpi

Failed sub-tests (click for more details):
replica_docking
Test: linux.clang.tensorflow.integration.tensorflow

Failed sub-tests (click for more details):
tensorflow_manager
Test: mac.clang.python39.integration

Failed sub-tests (click for more details):
mp_f19_relax


1 2 3 4 5 6 7 8 9 .. 13 >

Legend:
queued Queued Test
queued for comparison Test finished running but not yet compared
running Test is Running right now
comparing Test results is now comparing with previous results
finished Test is finished without errors
failed Test failed
build Failed Test could not be run because build failed
script failed Test results is unknow because test-script failed
canceled Test was canceled