Skip to content

Commit

Permalink
Исправление бага обучения
Browse files Browse the repository at this point in the history
  • Loading branch information
anyks committed Sep 19, 2020
1 parent 8654188 commit 11927f2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# [Change Log](https://github.com/anyks/asc/archive/release.tar.gz)

## [1.2.3](https://github.com/anyks/asc/archive/v1.2.3.tar.gz) Bug fixes

## [1.2.2](https://github.com/anyks/asc/archive/v1.2.2.tar.gz) Bug fixes

## [1.2.1](https://github.com/anyks/asc/archive/v1.2.1.tar.gz) Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion alm
2 changes: 1 addition & 1 deletion app/asc.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
// Название языковой модели
#define ANYKS_ASC_NAME "asc"
// Версия приложения
#define ANYKS_ASC_VERSION "1.2.2"
#define ANYKS_ASC_VERSION "1.2.3"
// Версия словаря
#define ANYKS_ASC_DICT_VERSION "1.0.1"
// Автор приложения
Expand Down
2 changes: 1 addition & 1 deletion src/ascb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ void anyks::ASCb::read() noexcept {
// Извлекаем дамп словаря
this->aspl->get(this->alphabet->format("alm_%zu", i), buffer, encrypted);
// Если буфер данных существует
if(!buffer.empty()) this->alm->setBin(buffer);
if(!buffer.empty()) (isALm2 ? this->alm->setBin2(buffer) : this->alm->setBin(buffer));
// Если отладка включена
if(this->debug > 0){
// Подсчитываем статус выполнения
Expand Down

0 comments on commit 11927f2

Please sign in to comment.