Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

Changes:
* Fix constant prediction early stopping rollback ([#214](https://github.com/xcsf-dev/xcsf/pull/214))

## Version 1.4.8 (Aug 26, 2025)

Changes:
Expand Down
4 changes: 1 addition & 3 deletions xcsf/pred_constant.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,7 @@ void
pred_constant_copy(const struct XCSF *xcsf, struct Cl *dest,
const struct Cl *src)
{
(void) xcsf;
(void) dest;
(void) src;
memcpy(dest->prediction, src->prediction, sizeof(double) * xcsf->y_dim);
}

/**
Expand Down
Loading