「view this page in B3 βῆτα server」

Revisions №62245

branch: rosetta:main 「№62245」
Commited by: lyskov-ai
GitHub commit link: 「089aeb4379b1a49e」
Difference from previous tested commit:  code diff
Commit date: 2026-05-08 14: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 m1.clang.unit util.apps windows.build.debug windows.build.release

Modernize copy prevention in utility/graph EdgeList/Node/Edge to use = delete (#672) Replace old-style private-and-undefined copy constructor/assignment with explicit `= delete` in six internal classes across `Graph.hh` and `Digraph.hh`: - `Graph.hh`: `EdgeList`, `Node`, `Edge` - `Digraph.hh`: `DirectedEdgeList`, `DirectedNode`, `DirectedEdge` Also corrects the copy assignment signatures from the non-standard `T&` argument to the correct `T const &` form. The `Graph` class itself (which has a real, implemented copy constructor and assignment) is unchanged.

...