-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
#875 にて `extern "C" fn generate_full_intermediate`の中で定義された二つ の定数について、以下の変更を加える。 `MARGIN_WIDTH`: Rust APIのものを持って来るようにすることで重複を避ける `FEATURE_SIZE`: 出力サイズのチェック時に失敗したとき、`ncols`が `FEATURE_SIZE`と異なるならパニックメッセージを別のものに する Refs: #875
- Loading branch information
Showing
3 changed files
with
14 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
pub mod raii; | ||
|
||
pub use crate::{metas::merge as merge_metas, synthesizer::blocking::PerformInference}; | ||
pub use crate::{ | ||
metas::merge as merge_metas, | ||
synthesizer::{blocking::PerformInference, MARGIN}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters