To me, g /: f[g[x_]] := h[x] is just verbose equivalent of f[g[x_]] := h[x]. Can you raise an example that you have to use /:?
|
|
|||
|
Actually,
would work. But, it generates the error
We could remove
or
Setting an upvalue is somewhat more correct from a conceptual point of view since There are a couple of issues to be aware of. First, the upvalue mechanism can only scan one level deep, i.e. Some of Mathematica's operators do not have any behavior associated with them, so they're not protected. For these operators, you can define functions as you wish. For instance, I've defined
and
to provide convenient shorthand notations for matrix operations that I use a lot. My example above was a little contrived, but there are a number of times Example: A straightforward and useful example is marking a
Note the use of |
||||
|
|
|
In addition to the excellent answer by @rcollyer, I'd like to emphasize a few other important things about Soft/local redefinition of system and other functionsOne very important aspect is that they allow you to "softly" overload some system functions only on certain symbols. The importance of this was pointed out by @rcollyer, but can not be emphasized enough - this makes the effect of your code local, and drastically reduces the chances that your code can globally interact and affect some other part of the system or other piece of user-defined code, unlike when you In addition to being safe and local, such redefinitions may also be quite general, if one uses constructs like Order of evaluationThe next point is evaluation. The common statement you can encounter is that "
The
Escaping Hold-attributesThis one is related to the previous point: one should be aware that search for
If one wants to absolutely prevent the search for
Level-1 tag depth restrictionThis was already mentioned by @rcollyer. This limitation was introduced for efficiency of the pattern-matcher/evaluator. I just want to stress one important and rather non-obvious consequence of it: it looks like you can not use
This seems to work. But let us try:
It does not do what we want, obviously. The problem is that
To my knowledge, Some differences between
|
+1, like always and for reminding me that TagSet and TagSetDelayed are ternary operators. – rcollyer Jul 13 '11 at 19:52 |
|
while it doesn't work quite as expected, I have been able to overload SetDelayed previously. Ah, I see why, my specifically uses symbols, not their values, so the restriction does not hold. – rcollyer Aug 17 '11 at 13:56 |
|
@rcollyer You can overload SetDelyaed on explicit symbols with UpValues, that's true. I did not fully explore this possibility myself, but it may well be that this can be used constructively and in interesting ways. This recent answer by @WReach comes to mind as one such example: stackoverflow.com/questions/6917656/… – Leonid Shifrin Aug 17 '11 at 14:40 |
|
@Leonid Re: order of evaluation
when evaluating f[g[arg]] the order is: downvalues of g, upvalues of g, downvalues of f .
Downvalues of g are evaluated BEFORE upvalues of g.
However if you look at ?g you will see that upvalues are listed before downvalues. So the presentation order is somewhat misleading.
Do you agree? – magma Sep 15 '11 at 13:25 |
|
Rcollyer has already given an excellent answer but here is an example of when you might use |
|||
|
g /: g[x_] + g[y_] := gplus[x, y]vs trying a transformation rule for every expression just to check if twog[ ]are added up – belisarius Jul 11 '11 at 11:13