Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
stdpp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Iris
stdpp
Merge requests
!470
Remove `left associativity` of `scalar_mult` to be compatible with math-comp.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Remove `left associativity` of `scalar_mult` to be compatible with math-comp.
robbert/scalar_mult_assoc
into
master
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Robbert Krebbers
requested to merge
robbert/scalar_mult_assoc
into
master
1 year ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
This addresses
#181 (closed)
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
595fa03c
1 commit,
1 year ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
stdpp/base.v
+
1
−
1
Options
@@ -1086,7 +1086,7 @@ in that. Hence, the value of [Params] is 3. *)
Global
Instance
:
Params
(
@
scalar_mul
)
3
:=
{}
.
(** The notation [*:] and level is taken from ssreflect, see
https://github.com/math-comp/math-comp/blob/master/mathcomp/ssreflect/ssrnotations.v *)
Infix
"*:"
:=
scalar_mul
(
at
level
40
,
left
associativity
)
:
stdpp_scope
.
Infix
"*:"
:=
scalar_mul
(
at
level
40
)
:
stdpp_scope
.
Notation
"(*:)"
:=
scalar_mul
(
only
parsing
)
:
stdpp_scope
.
Notation
"( x *:.)"
:=
(
scalar_mul
x
)
(
only
parsing
)
:
stdpp_scope
.
Notation
"(.*: x )"
:=
(
λ
y
,
scalar_mul
y
x
)
(
only
parsing
)
:
stdpp_scope
.
Loading