MilesCranmer commited on
Commit
ce3111c
1 Parent(s): 0729727

Tweak tuning page

Browse files
Files changed (1) hide show
  1. docs/tuning.md +1 -1
docs/tuning.md CHANGED
@@ -2,7 +2,7 @@
2
 
3
  I give a short guide below on how I like to tune PySR for my applications.
4
 
5
- First, my general tips would be to avoid using redundant operators, like how `pow` and `square` and `cube` are equivalent. The fewer operators the better; only use operators you need.
6
 
7
  When running PySR, I usually do the following:
8
 
 
2
 
3
  I give a short guide below on how I like to tune PySR for my applications.
4
 
5
+ First, my general tips would be to avoid using redundant operators, like how `pow` can do the same things as `square`, or how `-` (binary) and `neg` (unary) are equivalent. The fewer operators the better! Only use operators you need.
6
 
7
  When running PySR, I usually do the following:
8