Post Reply 
CAS command question
01-11-2017, 02:18 PM (This post was last modified: 01-11-2017 02:44 PM by DrD.)
Post: #75
RE: CAS command question
(01-11-2017 06:46 AM)parisse Wrote:  I'm really not an expert in the process of parsing. I'm using flex and bison to do that, you can refer to their documentation for much better explanation. In short, the C++ code output from flex reads the strings and cut it into words with a token value according to the rules in the file input_lexer.ll from giac source code (for example "(" has token value T_BEGIN_PAR). Then the C++ code output from bison translate the string into a giac::gen expression by grouping tokens according to the grammar in the file input_parser.yy. During that step, nothing is evaluated.

The quote describes the point I have been driving at: -If- you can get at the content from the input_lexer.ll, and before hitting the input_parser.yy (before any evaluation step), it seems like new lhs and rhs commands could be implemented using that content, without reordering the expressions. This would leave existing CAS left() and right() commands to remain in legacy status, (evaluated first).

ARGUMENT FOR new lhs and rhs commands: Other commands require an Expression, and conditionally reversing the expressions conflicts programs that directly flow from the existing left(), right(), commands, as result might become reversed. (Examples: coeff(), symb2poly(), LNAME(); etc.)

ARGUMENT AGAINST: Legacy, "always done it that way," means that CAS requires evaluation, resulting in "<" reversing expression order, and the user expectations might be affected.

Is it at the input_parser.yy where content gets evaluated? If not, then perhaps the content could be obtained there, etc.; and this is why I have remained so determined on this issue.

[Regarding reversing of expressions]:
I haven't found any authoritative citation that makes reordering expressions containing "<," anything close to a "natural order." (I understand the process and equivalence of the reordered result). I'm not an expert in this field, but most references I have found, have more to do with programming languages, than actual algebraic lexicon. For example, x<4, places the "subject" before the "predicate" which seems more natural to me, than 4>x. However, programming languages might be a little clearer with a constant on the left side, mainly to clarify that nothing is being "assigned" to the constant 4; perhaps, as used in an IF THEN ELSE type of construct.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
CAS command question - DrD - 01-02-2017, 06:44 PM
RE: CAS command question - Arno K - 01-02-2017, 09:55 PM
RE: CAS command question - parisse - 01-03-2017, 07:24 AM
RE: CAS command question - DrD - 01-03-2017, 11:33 AM
RE: CAS command question - Han - 01-04-2017, 03:06 PM
RE: CAS command question - DrD - 01-04-2017, 03:46 PM
RE: CAS command question - Han - 01-04-2017, 04:01 PM
RE: CAS command question - DrD - 01-04-2017, 08:37 PM
RE: CAS command question - Han - 01-05-2017, 02:07 AM
RE: CAS command question - matthiaspaul - 01-03-2017, 10:54 PM
RE: CAS command question - compsystems - 01-04-2017, 03:23 AM
RE: CAS command question - John P - 01-04-2017, 11:09 PM
RE: CAS command question - Arno K - 01-03-2017, 08:09 AM
RE: CAS command question - parisse - 01-03-2017, 04:42 PM
RE: CAS command question - parisse - 01-04-2017, 07:07 AM
RE: CAS command question - DrD - 01-04-2017, 11:19 AM
RE: CAS command question - Han - 01-04-2017, 02:46 PM
RE: CAS command question - compsystems - 01-04-2017, 12:56 PM
RE: CAS command question - DrD - 01-04-2017, 02:53 PM
RE: CAS command question - Han - 01-04-2017, 03:51 PM
RE: CAS command question - DrD - 01-04-2017, 03:32 PM
RE: CAS command question - compsystems - 01-04-2017, 05:08 PM
RE: CAS command question - parisse - 01-04-2017, 08:25 PM
RE: CAS command question - Arno K - 01-04-2017, 11:56 PM
RE: CAS command question - parisse - 01-05-2017, 07:46 AM
RE: CAS command question - Arno K - 01-05-2017, 08:54 AM
RE: CAS command question - DrD - 01-05-2017, 11:38 AM
RE: CAS command question - compsystems - 01-05-2017, 12:46 PM
RE: CAS command question - DrD - 01-05-2017, 02:28 PM
RE: CAS command question - Han - 01-05-2017, 04:49 PM
RE: CAS command question - DrD - 01-06-2017, 05:59 PM
RE: CAS command question - Han - 01-06-2017, 08:11 PM
RE: CAS command question - parisse - 01-05-2017, 07:31 PM
RE: CAS command question - compsystems - 01-05-2017, 08:08 PM
RE: CAS command question - Han - 01-05-2017, 09:07 PM
RE: CAS command question - Han - 01-05-2017, 09:20 PM
RE: CAS command question - Alberto Candel - 01-05-2017, 10:02 PM
RE: CAS command question - compsystems - 01-05-2017, 10:46 PM
RE: CAS command question - Alberto Candel - 01-05-2017, 11:05 PM
RE: CAS command question - Han - 01-05-2017, 11:53 PM
RE: CAS command question - chromos - 01-06-2017, 06:57 PM
RE: CAS command question - DrD - 01-06-2017, 08:28 PM
RE: CAS command question - Han - 01-06-2017, 08:37 PM
RE: CAS command question - John P - 01-08-2017, 11:15 PM
RE: CAS command question - parisse - 01-07-2017, 07:52 AM
RE: CAS command question - compsystems - 01-06-2017, 06:59 PM
RE: CAS command question - Han - 01-06-2017, 08:27 PM
RE: CAS command question - compsystems - 01-06-2017, 08:46 PM
RE: CAS command question - DrD - 01-07-2017, 11:25 AM
RE: CAS command question - parisse - 01-07-2017, 08:15 PM
RE: CAS command question - DrD - 01-07-2017, 10:54 PM
RE: CAS command question - DrD - 01-08-2017, 05:27 PM
RE: CAS command question - parisse - 01-09-2017, 06:43 AM
RE: - compsystems - 01-07-2017, 01:02 PM
RE: CAS command question - Dirk.nl - 01-07-2017, 09:32 PM
RE: CAS command question - parisse - 01-08-2017, 07:11 AM
RE: CAS command question - DrD - 01-08-2017, 09:47 AM
RE: CAS command question - compsystems - 01-08-2017, 04:17 PM
RE: CAS command question - DrD - 01-08-2017, 08:26 PM
RE: CAS command question - compsystems - 01-08-2017, 06:48 PM
RE: CAS command question - parisse - 01-09-2017, 04:43 PM
RE: CAS command question - DrD - 01-09-2017, 06:09 PM
RE: CAS command question - parisse - 01-09-2017, 06:58 PM
RE: CAS command question - Han - 01-09-2017, 07:29 PM
RE: CAS command question - DrD - 01-09-2017, 10:57 PM
RE: CAS command question - Han - 01-10-2017, 05:44 AM
RE: CAS command question - parisse - 01-10-2017, 07:58 AM
RE: CAS command question - DrD - 01-10-2017, 10:53 AM
RE: CAS command question - Han - 01-10-2017, 03:33 PM
RE: CAS command question - parisse - 01-10-2017, 06:58 PM
RE: CAS command question - Han - 01-10-2017, 09:14 PM
RE: CAS command question - compsystems - 01-10-2017, 08:26 PM
RE: CAS command question - parisse - 01-11-2017, 06:46 AM
RE: CAS command question - DrD - 01-11-2017 02:18 PM
RE: CAS command question - Han - 01-11-2017, 08:19 PM
RE: CAS command question - parisse - 01-11-2017, 05:40 PM
RE: CAS command question - DrD - 01-12-2017, 11:14 AM
RE: CAS command question - Arno K - 01-12-2017, 12:44 PM
RE: CAS command question - parisse - 01-12-2017, 07:29 PM
RE: CAS command question - DrD - 01-12-2017, 08:44 PM
RE: CAS command question - Arno K - 01-12-2017, 10:11 PM
RE: CAS command question - parisse - 01-13-2017, 06:54 AM
RE: CAS command question - DrD - 01-13-2017, 10:52 AM
RE: CAS command question - Han - 01-13-2017, 03:12 PM
RE: CAS command question - DrD - 01-13-2017, 04:47 PM
RE: CAS command question - parisse - 01-13-2017, 09:18 PM
RE: CAS command question - DrD - 01-13-2017, 10:36 PM
RE: CAS command question - parisse - 01-14-2017, 06:44 AM
RE: CAS command question - compsystems - 01-14-2017, 02:40 AM
RE: CAS command question - DrD - 01-14-2017, 11:36 AM
RE: CAS command question - parisse - 01-14-2017, 12:25 PM
RE: CAS command question - compsystems - 01-14-2017, 01:05 PM
RE: CAS command question - DrD - 01-14-2017, 02:20 PM
RE: CAS command question - parisse - 01-14-2017, 07:27 PM
RE: CAS command question - DrD - 01-14-2017, 02:11 PM
RE: CAS command question - Dirk.nl - 01-14-2017, 02:46 PM
RE: CAS command question - Mark Hardman - 01-14-2017, 02:58 PM
RE: CAS command question - John P - 01-14-2017, 03:11 PM
RE: CAS command question - DrD - 01-14-2017, 03:17 PM
RE: CAS command question - Dirk.nl - 01-14-2017, 03:27 PM
RE: CAS command question - DrD - 01-15-2017, 09:30 AM
RE: CAS command question - compsystems - 01-14-2017, 03:31 PM
RE: CAS command question - compsystems - 01-15-2017, 01:28 AM



User(s) browsing this thread: 1 Guest(s)