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

Revisions №21178

branch: rosetta:commits 「№21178」
Commited by: lyskov-ai
GitHub Pull Request link: 「№662」
Merge: 「068bd8532」「62c1e29ac」  code diff
Scheduled at: 2026-04-27 19:37:22.372555
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

Pull Request №662 RosettaCommons/rosetta/main ← lyskov-ai/rosetta/refactor/svm-rosetta-unique-ptr Merge: 068bd85322153b1ddc5a354f8cf0633a5631e9fa←62c1e29ac2e17961b916c01f36ecbbfef3304ca8 Refactor Svm_rosetta raw pointer to unique_ptr with custom deleter ---------------- Merge commit message: Refactor Svm_rosetta raw pointer to unique_ptr with custom deleter Replaces the bare svm_model* in Svm_rosetta with std::unique_ptr<svm_model, SvmModelDeleter> to make ownership explicit and eliminate the latent double-free from compiler-generated copy operations. Deletes copy constructor and assignment. Removes the unnecessary = default destructor from Svm_node_rosetta.