gam 0.2.3

Generalized penalized likelihood engine
1
2
3
4
5
6
7
8
9
use crate::terms::analytic_penalties::ScadMcpPenalty;

use super::PenaltyManifest;

impl PenaltyManifest for ScadMcpPenalty {
    const KIND_TAG: &'static str = "scad_mcp";
    const PYTHON_WRAPPER: &'static str = "ScadMcpPenalty";
    const ROW_BLOCK_DIAGONAL: bool = true;
}