Skip to content

Commit ca1b89b

Browse files
committed
typos
1 parent 97c84a9 commit ca1b89b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -312,8 +312,8 @@ sum([∫(1⨸(1 - sin((~e) + (~f)*(~x))^2⨸((-1)^(4*iii⨸(~n))*rt(-(~a)⨸(~b)
312312
### Module syntax translation
313313
The `Module` Syntax is similar to the `With` syntax, but a bit different and for now is not handled by the script
314314

315-
### * not present or present as \[Star]
316-
in Mathematica if you write `a b` or `a \[Star] b` is interpreted as `a*b`. So sometimes in the rules is written like that. When it happens i usually add the * in the mathematica file, and then i translate it
315+
### * not present or present as \\[Star]
316+
in Mathematica if you write `a b` or `a \[Star] b` is interpreted as `a*b`. So sometimes in the rules is written like that. When it happens i usually add manually the * in the mathematica file, and then i translate it
317317

318318
## Description of the script `src/translator_of_rules.jl`
319319
This script is used to translate integration rules from Mathematica syntax
@@ -356,7 +356,7 @@ end : nothing
356356
```
357357
The old method was to finds the defined variables and substitute them with their
358358
definition. Also there could be conditions inside the With block (OddQ in the example),
359-
that were bought outside.
359+
that were bought outside. This is not done anymore.
360360
```
361361
1/(2*c*Rt[2*q - b/c, 2])*Int[x^(m - 3), x] - 1/(2*c*Rt[2*q - b/c, 2])/; FreeQ[{a, b, c}, x] && (NeQ[b^2 - 4*a*c, 0] || (GeQ[m, 3] && LtQ[m, 4])) && NegQ[b^2 - 4*a*c] && OddQ[Rt[2*q - b/c, 2]]
362362
```
@@ -409,10 +409,10 @@ applied automatically that rewrites the rule like this:
409409
ext_isodd(rt(2*(~q) - (~b)/(~c), 2)) ?
410410
1⨸(2*(~c)*rt(2*(~q) - (~b)⨸(~c), 2))*∫((~x)^((~m) - 3), (~x)) - 1⨸(2*(~c)*rt(2*(~q) - (~b)⨸(~c), 2)) : nothing
411411
```
412+
and this is pretty cool
412413

413414
#### end
414-
finally the rule is placed in a tuple (index, rule), and all the
415-
tuples are put into a array, ready to be included by load_rules
415+
finally the rule is placed in a tuple (index, rule), and all the tuples are put into a array, ready to be included by the function load_rules
416416

417417
# Testing
418418

0 commit comments

Comments
 (0)