repo.or.cz
/
hkl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[contrib][haskell] add the Hkl.C.Engine
[hkl.git]
/
scripts
/
OK.cocci
blob
8c09d8c428543ad6106783eb6a39e29a74f9edd3
1
// use is_matrix when possible
2
3
@@
4
identifier res, f;
5
expression E;
6
@@
7
8
(
9
res &= DIAG(E);
10
|
11
-res &= E;
12
+res &= DIAG(E);
13
)