All Downloads are FREE. Search and download functionalities are using the official Maven repository.

coulomb.ops.standard.deltaaddq.scala Maven / Gradle / Ivy

There is a newer version: 0.9.0-RC1
Show newest version
/*
 * Copyright 2022 Erik Erlandson
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package coulomb.ops.standard

object deltaaddq:
    import scala.util.NotGiven
    import scala.Conversion

    import algebra.ring.AdditiveSemigroup

    import coulomb.*
    import coulomb.syntax.*
    import coulomb.ops.{DeltaAddQ, ValueResolution}

    transparent inline given ctx_deltaaddq_1V1U[B, VL, UL, VR, UR](using
        eqv: VR =:= VL,
        equ: UR =:= UL,
        alg: AdditiveSemigroup[VL]
    ): DeltaAddQ[B, VL, UL, VR, UR] =
        new infra.DeltaAddQNC(
            (ql: DeltaQuantity[VL, UL, B], qr: Quantity[VR, UR]) =>
                alg.plus(ql.value, eqv(qr.value)).withDeltaUnit[UL, B]
        )

    transparent inline given ctx_deltaaddq_1V2U[B, VL, UL, VR, UR](using
        eqv: VR =:= VL,
        neu: NotGiven[UR =:= UL],
        icr: Conversion[Quantity[VR, UR], Quantity[VL, UL]],
        alg: AdditiveSemigroup[VL]
    ): DeltaAddQ[B, VL, UL, VR, UR] =
        new infra.DeltaAddQNC(
            (ql: DeltaQuantity[VL, UL, B], qr: Quantity[VR, UR]) =>
                alg.plus(ql.value, icr(qr).value).withDeltaUnit[UL, B]
        )

    transparent inline given ctx_deltaaddq_2V1U[B, VL, UL, VR, UR](using
        nev: NotGiven[VR =:= VL],
        equ: UR =:= UL,
        vres: ValueResolution[VL, VR],
        icl: Conversion[
            DeltaQuantity[VL, UL, B],
            DeltaQuantity[vres.VO, UL, B]
        ],
        icr: Conversion[Quantity[VR, UR], Quantity[vres.VO, UL]],
        alg: AdditiveSemigroup[vres.VO]
    ): DeltaAddQ[B, VL, UL, VR, UR] =
        new infra.DeltaAddQNC(
            (ql: DeltaQuantity[VL, UL, B], qr: Quantity[VR, UR]) =>
                alg.plus(icl(ql).value, icr(qr).value).withDeltaUnit[UL, B]
        )

    transparent inline given ctx_deltaaddq_2V2U[B, VL, UL, VR, UR](using
        nev: NotGiven[VR =:= VL],
        neu: NotGiven[UR =:= UL],
        vres: ValueResolution[VL, VR],
        icl: Conversion[
            DeltaQuantity[VL, UL, B],
            DeltaQuantity[vres.VO, UL, B]
        ],
        icr: Conversion[Quantity[VR, UR], Quantity[vres.VO, UL]],
        alg: AdditiveSemigroup[vres.VO]
    ): DeltaAddQ[B, VL, UL, VR, UR] =
        new infra.DeltaAddQNC(
            (ql: DeltaQuantity[VL, UL, B], qr: Quantity[VR, UR]) =>
                alg.plus(icl(ql).value, icr(qr).value).withDeltaUnit[UL, B]
        )

    object infra:
        class DeltaAddQNC[B, VL, UL, VR, UR, VOp, UOp](
            val eval: (
                DeltaQuantity[VL, UL, B],
                Quantity[VR, UR]
            ) => DeltaQuantity[VOp, UOp, B]
        ) extends DeltaAddQ[B, VL, UL, VR, UR]:
            type VO = VOp
            type UO = UOp




© 2015 - 2024 Weber Informatics LLC | Privacy Policy