NO

Author Topic: myEditor  (Read 6364 times)

Offline John Z

  • Member
  • *
  • Posts: 790
Re: myEditor
« Reply #15 on: February 10, 2020, 11:03:56 PM »
So, first congratulations - it does not crash upon start-up ;)  so I can do some more testing for you.  I saw a clean ini file, but also clean of system utilities ;(, I know, I know, you are thinking what do these people want?!

Taking your documented status above into consideration I'll do some more testing.  I want to encourage you now though to not rely on a user file existing at any time, without first checking to see if it exists.  If one deletes the last file used for example in a clean-up, then starts your current program, it will still crash and will continue to crash until the user edits the ini file, the user should not have to do this IMO. If they delete a program file, yes crash, but not a user file....and tell them the file is not available....

I'll checkout the help document creator you mentioned.  I usually just use Micro$oft .chm format.  It is free, easy to use and then integrate into the source code for context sensitive help, in addition to the standalone readable file.

Offline John Z

  • Member
  • *
  • Posts: 790
Re: myEditor
« Reply #16 on: February 11, 2020, 01:47:52 AM »
New testing inputs: Version=0.0.0.7423

File
 Open and existing file - works!
  My only input here is that the file type list is too long,IMO, and 'All Files' is at the bottom. I
  would put 1st or second but that is just a personal preference.

  It is interesting that you allow the same file to be opened in more than one window at the same time
  both editable and no synchronization between them.

 Save All opened files - not working
  It only saved the active tab file of the four open and modified files. The other three were
  not saved (they also did not loose their * which was good)

 Using Save All opened Files on a file tab created from "copy the contents of a file to a new document" did
  not ask for a filename, once it just named it the same as the source document, a later trial then just
  kept the filename as "[No Title] -10-"

 Make a backup copy - works! but it would be an improvement to show the user the path and filename
 of the backup file in the completion message box.
 
 Recent File list not working correctly, screen shot attached. Also could not open any file on the list
  by clicking it, presumably that is what it is for.

Edit
 All working until Find - no dialogue is shown (You mentioned this in your update)
 Find Next not working (You mentioned this in your update)
 
 Replace worked - not sure why the button says 'Validate' though. Could not UNDO, all in French
 
 Goto Line worked, understanding it is zero based, however the line number shown in the status bar is
 1 based so Goto Line 5 shows 6 on the status bar.  (You mentioned this in your update)

 Locking/unlocking works.
 
 Batch commands - did not try yet.
 
Selection
 Check an expression - might consider adding double and single quotes and possibly /* */ ?
 Also not robust - this expression  [(   ]) passes,  as does this }{ 

 everything else works!
 
 
Columns

Upper case works!
Lower case works!
Caveat, cursor selecting the columns must be on the first line.
Caveat, first row MUST have characters in the column. This is an issue if
 the first line is shorter than following lines. Can't operate on column 25
 of the document if line 0 only has 10 but other lines have 50
 
Clear column does not always clear the last line column, tested using RegEx.doc
Delete column does not always delete the last line column tested using RegEx.doc
Inverse column does not always delete the last line column tested using RegEx.doc
 BUT these seemed to work ok on a different dummy file, but you should be able
 to replicate using the RegEx.doc file.
 
Insert a column - worked and has UNDO

All for now.

Offline John Z

  • Member
  • *
  • Posts: 790
Re: myEditor
« Reply #17 on: February 11, 2020, 05:15:05 AM »
To actually help a bit, rather than just point out bugs, attached are the two language files. 

I have synchronized them, fixed spellings, added missing items, etc., to each file, to make them identical in all aspects but the language.

Hope this is useful to you.

Grincheux

  • Guest
Re: myEditor
« Reply #18 on: February 11, 2020, 12:02:19 PM »
Quote
Open and existing file - works!
  My only input here is that the file type list is too long,IMO, and 'All Files' is at the bottom. I
  would put 1st or second but that is just a personal preference.

Filter list reduced

Quote
  It is interesting that you allow the same file to be opened in more than one window at the same time
  both editable and no synchronization between them.

It is a bit dangerous, but that can help
It would be better to import or to open in read only mode for the second file

Quote
  Make a backup copy - works! but it would be an improvement to show the user the path and filename
  of the backup file in the completion message box.

I think so too

I have replaced the language files with yours and added two sections.

Quote
  Using Save All opened Files on a file tab created from "copy the contents of a file to a new document" did
  not ask for a filename, once it just named it the same as the source document, a later trial then just
  kept the filename as "[No Title] -10-"

I don't understand but I will lookup

Quote
  Columns

Upper case works!
Lower case works!
  Caveat, cursor selecting the columns must be on the first line.
  Caveat, first row MUST have characters in the column. This is an issue if
  the first line is shorter than following lines. Can't operate on column 25
  of the document if line 0 only has 10 but other lines have 50
 
  Clear column does not always clear the last line column, tested using RegEx.doc
  Delete column does not always delete the last line column tested using RegEx.doc
  Inverse column does not always delete the last line column tested using RegEx.doc
  BUT these seemed to work ok on a different dummy file, but you should be able
  to replicate using the RegEx.doc file.
 
  Insert a column - worked and has UNDO

No seen again

Quote
  Selection
  Check an expression - might consider adding double and single quotes and possibly /* */ ?
  Also not robust - this expression  [(   ]) passes,  as does this }{

I will write a another checking code

Now I upload the files

Thank you
« Last Edit: February 11, 2020, 06:18:33 PM by Grincheux »

Grincheux

  • Guest
Re: myEditor
« Reply #19 on: February 11, 2020, 06:17:33 PM »
Quote
  Using Save All opened Files on a file tab created from "copy the contents of a file to a new document" did
  not ask for a filename, once it just named it the same as the source document, a later trial then just
  kept the filename as "[No Title] -10-"

I consider it is not a important file, so I let the file name and don't save it at exit.

Quote
Make a backup copy - works! but it would be an improvement to show the user the path and filename
of the backup file in the completion message box.

Done

Grincheux

  • Guest
Re: myEditor
« Reply #20 on: February 11, 2020, 08:03:30 PM »
Quote
  Clear column does not always clear the last line column, tested using RegEx.doc
  Delete column does not always delete the last line column tested using RegEx.doc
  Inverse column does not always delete the last line column tested using RegEx.doc
  BUT these seemed to work ok on a different dummy file, but you should be able
  to replicate using the RegEx.doc file.


This is because there is no CRLF on the last line.

Offline John Z

  • Member
  • *
  • Posts: 790
Re: myEditor
« Reply #21 on: February 11, 2020, 09:39:03 PM »
Wow, you are prolific.

The good thing about having a tester that knows nothing about the program is that we make a lot of choices that a knowledgeable one might not or would not.  That is we make mistakes that can reveal issues. :)


Grincheux

  • Guest
Re: myEditor
« Reply #22 on: February 13, 2020, 05:31:32 PM »
You are a programmer so you know the logic behind the program. Sometimes testers does not know this logic and have no feeling, I let you imagine the situations. If you are polite you say "Yes it is a good idea", if not you say "Stop, you did not understand...".

Grincheux

  • Guest
Re: myEditor
« Reply #23 on: March 01, 2020, 10:34:11 AM »
Many bugs corrected (Thank You John Z).
I am creating an analyzer/solver for formulas.
It transforms a formula into its Reverse Polish Notation.
That's all it does for the instant but what I am currently doing is to make simulation.


Quote
Input Formule entra : y:=(a*(x*x))+(b*x)+c ;


[dimanche 1 mars 2020 09:51:20] : *** Log Started ***
[dimanche 1 mars 2020 09:51:20] : Openning Log
[dimanche 1 mars 2020 09:51:20] : Log Ready
[dimanche 1 mars 2020 09:51:20] : y a x x * * b x * c + + :=
[dimanche 1 mars 2020 09:51:20] : y a _T1_ * _T2_ c + + :=
[dimanche 1 mars 2020 09:51:20] : y _T3_ _T4_ + :=
[dimanche 1 mars 2020 09:51:20] : y _T5_ :=
[dimanche 1 mars 2020 09:51:20] : _T6_
[dimanche 1 mars 2020 09:51:20] : y:=(a*(x*x))+(b*x)+c ;            = _T6_
[dimanche 1 mars 2020 09:51:22] : Closing Log file
[dimanche 1 mars 2020 09:51:22] : *** Log Stoped ***


I'll come back when I will be able to show the simulations.

Grincheux

  • Guest
Re: myEditor
« Reply #24 on: March 01, 2020, 03:28:16 PM »

Now each item is associated to a temporary variables, and each items has its hown value.
The show can go on...

Quote
[dimanche 1 mars 2020 14:16:19] : *** Log Started ***
[dimanche 1 mars 2020 14:16:19] : Openning Log
[dimanche 1 mars 2020 14:16:19] : Log Ready
*************************************************************************************************************
[dimanche 1 mars 2020 14:16:19] : y a x x * * b x * c + + :=
[dimanche 1 mars 2020 14:16:19] : y a _T1_ * _T2_ c + + :=
[dimanche 1 mars 2020 14:16:19] : y _T3_ _T4_ + :=
[dimanche 1 mars 2020 14:16:19] : y _T5_ :=
[dimanche 1 mars 2020 14:16:19] : _T6_

[dimanche 1 mars 2020 14:16:19] : _T1_ = x * x
[dimanche 1 mars 2020 14:16:19] : _T2_ = b * x
[dimanche 1 mars 2020 14:16:19] : _T3_ = a * _T1_
[dimanche 1 mars 2020 14:16:19] : _T4_ = _T2_ + c
[dimanche 1 mars 2020 14:16:19] : _T5_ = _T3_ + _T4_
[dimanche 1 mars 2020 14:16:19] : _T6_ = y := _T5_

[dimanche 1 mars 2020 14:16:19] : y:=(a*(x*x))+(b*x)+c ;                           = _T6_
*************************************************************************************************************
[dimanche 1 mars 2020 14:16:19] : R B C D + * 5 Y 2 T - / 75 Z + 3 + * % / :=
[dimanche 1 mars 2020 14:16:19] : R B _T1_ * 5 Y _T2_ / _T3_ 3 + * % / :=
[dimanche 1 mars 2020 14:16:19] : R _T4_ 5 _T5_ _T6_ * % / :=
[dimanche 1 mars 2020 14:16:19] : R _T4_ 5 _T7_ % / :=
[dimanche 1 mars 2020 14:16:19] : R _T4_ _T8_ / :=
[dimanche 1 mars 2020 14:16:19] : R _T9_ :=
[dimanche 1 mars 2020 14:16:19] : _T10_

[dimanche 1 mars 2020 14:16:19] : _T1_ = C + D
[dimanche 1 mars 2020 14:16:19] : _T2_ = 2 - T
[dimanche 1 mars 2020 14:16:19] : _T3_ = 75 + Z
[dimanche 1 mars 2020 14:16:19] : _T4_ = B * _T1_
[dimanche 1 mars 2020 14:16:19] : _T5_ = Y / _T2_
[dimanche 1 mars 2020 14:16:19] : _T6_ = _T3_ + 3
[dimanche 1 mars 2020 14:16:19] : _T7_ = _T5_ * _T6_
[dimanche 1 mars 2020 14:16:19] : _T8_ = 5 % _T7_
[dimanche 1 mars 2020 14:16:19] : _T9_ = _T4_ / _T8_
[dimanche 1 mars 2020 14:16:19] : _T10_ = R := _T9_

[dimanche 1 mars 2020 14:16:19] : R := (B * (C + D)) / 5 % (Y / 2 - T) * (75 + Z) + 3 ;      = _T10_
*************************************************************************************************************
[dimanche 1 mars 2020 14:16:19] : R Y 2 T - / 75 Z + * :=
[dimanche 1 mars 2020 14:16:19] : R Y _T1_ / _T2_ * :=
[dimanche 1 mars 2020 14:16:19] : R _T3_ _T2_ * :=
[dimanche 1 mars 2020 14:16:19] : R _T4_ :=
[dimanche 1 mars 2020 14:16:19] : _T5_

[dimanche 1 mars 2020 14:16:19] : _T1_ = 2 - T
[dimanche 1 mars 2020 14:16:19] : _T2_ = 75 + Z
[dimanche 1 mars 2020 14:16:19] : _T3_ = Y / _T1_
[dimanche 1 mars 2020 14:16:19] : _T4_ = _T3_ * _T2_
[dimanche 1 mars 2020 14:16:19] : _T5_ = R := _T4_

[dimanche 1 mars 2020 14:16:19] : R :=(Y/2-T)*(75+Z) ;                           = _T5_
*************************************************************************************************************
[dimanche 1 mars 2020 14:16:19] : A B C D + 5 / * :=
[dimanche 1 mars 2020 14:16:19] : A B _T1_ 5 / * :=
[dimanche 1 mars 2020 14:16:19] : A B _T2_ * :=
[dimanche 1 mars 2020 14:16:19] : A _T3_ :=
[dimanche 1 mars 2020 14:16:19] : _T4_

[dimanche 1 mars 2020 14:16:19] : _T1_ = C + D
[dimanche 1 mars 2020 14:16:19] : _T2_ = _T1_ / 5
[dimanche 1 mars 2020 14:16:19] : _T3_ = B * _T2_
[dimanche 1 mars 2020 14:16:19] : _T4_ = A := _T3_

[dimanche 1 mars 2020 14:16:19] : A := B * (C + D) / 5 ;                           = _T4_
*************************************************************************************************************
[dimanche 1 mars 2020 14:16:19] : A B C * D 5 / + :=
[dimanche 1 mars 2020 14:16:19] : A _T1_ _T2_ + :=
[dimanche 1 mars 2020 14:16:19] : A _T3_ :=
[dimanche 1 mars 2020 14:16:19] : _T4_

[dimanche 1 mars 2020 14:16:19] : _T1_ = B * C
[dimanche 1 mars 2020 14:16:19] : _T2_ = D / 5
[dimanche 1 mars 2020 14:16:19] : _T3_ = _T1_ + _T2_
[dimanche 1 mars 2020 14:16:19] : _T4_ = A := _T3_
[dimanche 1 mars 2020 14:16:19] : A := (B * C) + D / 5 ;                           = _T4_
*************************************************************************************************************
[dimanche 1 mars 2020 14:16:19] : A B C D 5 / + * :=
[dimanche 1 mars 2020 14:16:19] : A B C _T1_ + * :=
[dimanche 1 mars 2020 14:16:19] : A B _T2_ * :=
[dimanche 1 mars 2020 14:16:19] : A _T3_ :=
[dimanche 1 mars 2020 14:16:19] : _T4_

[dimanche 1 mars 2020 14:16:19] : _T1_ = D / 5
[dimanche 1 mars 2020 14:16:19] : _T2_ = C + _T1_
[dimanche 1 mars 2020 14:16:19] : _T3_ = B * _T2_
[dimanche 1 mars 2020 14:16:19] : _T4_ = A := _T3_

[dimanche 1 mars 2020 14:16:19] : A := B * C + (D / 5) ;                           = _T4_
*************************************************************************************************************
[dimanche 1 mars 2020 14:16:19] : A B C D + * 5 / :=
[dimanche 1 mars 2020 14:16:19] : A B _T1_ * 5 / :=
[dimanche 1 mars 2020 14:16:19] : A _T2_ 5 / :=
[dimanche 1 mars 2020 14:16:19] : A _T3_ :=
[dimanche 1 mars 2020 14:16:19] : _T4_

[dimanche 1 mars 2020 14:16:19] : _T1_ = C + D
[dimanche 1 mars 2020 14:16:19] : _T2_ = B * _T1_
[dimanche 1 mars 2020 14:16:19] : _T3_ = _T2_ / 5
[dimanche 1 mars 2020 14:16:19] : _T4_ = A := _T3_

[dimanche 1 mars 2020 14:16:19] : A := (B * (C + D)) / 5 ;                        = _T4_
*************************************************************************************************************
[dimanche 1 mars 2020 14:16:19] : A B C * D 5 / + :=
[dimanche 1 mars 2020 14:16:19] : A _T1_ _T2_ + :=
[dimanche 1 mars 2020 14:16:19] : A _T3_ :=
[dimanche 1 mars 2020 14:16:19] : _T4_

[dimanche 1 mars 2020 14:16:19] : _T1_ = B * C
[dimanche 1 mars 2020 14:16:19] : _T2_ = D / 5
[dimanche 1 mars 2020 14:16:19] : _T3_ = _T1_ + _T2_
[dimanche 1 mars 2020 14:16:19] : _T4_ = A := _T3_

[dimanche 1 mars 2020 14:16:19] : A := (B * C) + (D / 5) ;                        = _T4_
*************************************************************************************************************
[dimanche 1 mars 2020 14:16:19] : A B C D 5 / + * :=
[dimanche 1 mars 2020 14:16:19] : A B C _T1_ + * :=
[dimanche 1 mars 2020 14:16:19] : A B _T2_ * :=
[dimanche 1 mars 2020 14:16:19] : A _T3_ :=
[dimanche 1 mars 2020 14:16:19] : _T4_

[dimanche 1 mars 2020 14:16:19] : _T1_ = D / 5
[dimanche 1 mars 2020 14:16:19] : _T2_ = C + _T1_
[dimanche 1 mars 2020 14:16:19] : _T3_ = B * _T2_
[dimanche 1 mars 2020 14:16:19] : _T4_ = A := _T3_

[dimanche 1 mars 2020 14:16:19] : A := B * (C + (D / 5)) ;                        = _T4_
*************************************************************************************************************
[dimanche 1 mars 2020 14:16:19] : R 3 A * B + 2 / C * :=
[dimanche 1 mars 2020 14:16:19] : R _T1_ B + 2 / C * :=
[dimanche 1 mars 2020 14:16:19] : R _T2_ 2 / C * :=
[dimanche 1 mars 2020 14:16:19] : R _T3_ C * :=
[dimanche 1 mars 2020 14:16:19] : R _T4_ :=
[dimanche 1 mars 2020 14:16:19] : _T5_

[dimanche 1 mars 2020 14:16:19] : _T1_ = 3 * A
[dimanche 1 mars 2020 14:16:19] : _T2_ = _T1_ + B
[dimanche 1 mars 2020 14:16:19] : _T3_ = _T2_ / 2
[dimanche 1 mars 2020 14:16:19] : _T4_ = _T3_ * C
[dimanche 1 mars 2020 14:16:19] : _T5_ = R := _T4_

[dimanche 1 mars 2020 14:16:19] : R := (((3 * A) + B) / 2) * C ;                     = _T5_
*************************************************************************************************************
[dimanche 1 mars 2020 14:16:19] : R 5 E * 2 3 B * 4 + * + :=
[dimanche 1 mars 2020 14:16:19] : R _T1_ 2 _T2_ 4 + * + :=
[dimanche 1 mars 2020 14:16:19] : R _T1_ 2 _T3_ * + :=
[dimanche 1 mars 2020 14:16:19] : R _T1_ _T4_ + :=
[dimanche 1 mars 2020 14:16:19] : R _T5_ :=
[dimanche 1 mars 2020 14:16:19] : _T6_

[dimanche 1 mars 2020 14:16:19] : _T1_ = 5 * E
[dimanche 1 mars 2020 14:16:19] : _T2_ = 3 * B
[dimanche 1 mars 2020 14:16:19] : _T3_ = _T2_ + 4
[dimanche 1 mars 2020 14:16:19] : _T4_ = 2 * _T3_
[dimanche 1 mars 2020 14:16:19] : _T5_ = _T1_ + _T4_
[dimanche 1 mars 2020 14:16:19] : _T6_ = R := _T5_

[dimanche 1 mars 2020 14:16:19] : R := (5 * E) + 2 * ((3 * B) + 4) ;                  = _T6_
*************************************************************************************************************
[dimanche 1 mars 2020 14:16:19] : R 9 5 E 2 + 3 * * B 4 + * >| :=
[dimanche 1 mars 2020 14:16:19] : R 9 5 _T1_ 3 * * _T2_ * >| :=
[dimanche 1 mars 2020 14:16:19] : R 9 5 _T3_ * _T2_ * >| :=
[dimanche 1 mars 2020 14:16:19] : R 9 _T4_ _T2_ * >| :=
[dimanche 1 mars 2020 14:16:19] : R 9 _T5_ >| :=
[dimanche 1 mars 2020 14:16:19] : R _T6_ :=
[dimanche 1 mars 2020 14:16:19] : _T7_

[dimanche 1 mars 2020 14:16:19] : _T1_ = E + 2
[dimanche 1 mars 2020 14:16:19] : _T2_ = B + 4
[dimanche 1 mars 2020 14:16:19] : _T3_ = _T1_ * 3
[dimanche 1 mars 2020 14:16:19] : _T4_ = 5 * _T3_
[dimanche 1 mars 2020 14:16:19] : _T5_ = _T4_ * _T2_
[dimanche 1 mars 2020 14:16:19] : _T6_ = 9 >| _T5_
[dimanche 1 mars 2020 14:16:19] : _T7_ = R := _T6_

[dimanche 1 mars 2020 14:16:19] : R := 9>|(5 * (E + 2) * 3) * (B + 4) ;               = _T7_
*************************************************************************************************************
[dimanche 1 mars 2020 14:16:19] : R A B 5 % ^ 5 << :=
[dimanche 1 mars 2020 14:16:19] : R A _T1_ ^ 5 << :=
[dimanche 1 mars 2020 14:16:19] : R _T2_ 5 << :=
[dimanche 1 mars 2020 14:16:19] : R _T3_ :=
[dimanche 1 mars 2020 14:16:19] : _T4_

[dimanche 1 mars 2020 14:16:19] : _T1_ = B % 5
[dimanche 1 mars 2020 14:16:19] : _T2_ = A ^ _T1_
[dimanche 1 mars 2020 14:16:19] : _T3_ = _T2_ << 5
[dimanche 1 mars 2020 14:16:19] : _T4_ = R := _T3_

[dimanche 1 mars 2020 14:16:19] : R := (A ^ (B % 5)) <<5 ;                        = _T4_
*************************************************************************************************************
[dimanche 1 mars 2020 14:16:19] : R A E 5 + + :=
[dimanche 1 mars 2020 14:16:19] : R A _T1_ + :=
[dimanche 1 mars 2020 14:16:19] : R _T2_ :=
[dimanche 1 mars 2020 14:16:19] : _T3_

[dimanche 1 mars 2020 14:16:19] : _T1_ = E + 5
[dimanche 1 mars 2020 14:16:19] : _T2_ = A + _T1_
[dimanche 1 mars 2020 14:16:19] : _T3_ = R := _T2_

[dimanche 1 mars 2020 14:16:19] : R := A + (E + 5) ;                              = _T3_
*************************************************************************************************************
[dimanche 1 mars 2020 14:16:19] : R A C E D - 0 1 - ^ + * :=
[dimanche 1 mars 2020 14:16:19] : R A C _T1_ _T2_ ^ + * :=
[dimanche 1 mars 2020 14:16:19] : R A C _T3_ + * :=
[dimanche 1 mars 2020 14:16:19] : R A _T4_ * :=
[dimanche 1 mars 2020 14:16:19] : R _T5_ :=
[dimanche 1 mars 2020 14:16:19] : _T6_

[dimanche 1 mars 2020 14:16:19] : _T1_ = E - D
[dimanche 1 mars 2020 14:16:19] : _T2_ = 0 - 1
[dimanche 1 mars 2020 14:16:19] : _T3_ = _T1_ ^ _T2_
[dimanche 1 mars 2020 14:16:19] : _T4_ = C + _T3_
[dimanche 1 mars 2020 14:16:19] : _T5_ = A * _T4_
[dimanche 1 mars 2020 14:16:19] : _T6_ = R := _T5_

[dimanche 1 mars 2020 14:16:19] : R := A * C + (E - D)^ (0-1) ;                     = _T6_
*************************************************************************************************************
[dimanche 1 mars 2020 14:16:19] : R 23 0 E - A C + 7 / 97 ^ * 124 == + :=
[dimanche 1 mars 2020 14:16:19] : R 23 _T1_ _T2_ 7 / 97 ^ * 124 == + :=
[dimanche 1 mars 2020 14:16:19] : R 23 _T1_ _T3_ 97 ^ * 124 == + :=
[dimanche 1 mars 2020 14:16:19] : R 23 _T1_ _T4_ * 124 == + :=
[dimanche 1 mars 2020 14:16:19] : R 23 _T5_ 124 == + :=
[dimanche 1 mars 2020 14:16:19] : R 23 _T6_ + :=
[dimanche 1 mars 2020 14:16:19] : R _T7_ :=
[dimanche 1 mars 2020 14:16:19] : _T8_

[dimanche 1 mars 2020 14:16:19] : _T1_ = 0 - E
[dimanche 1 mars 2020 14:16:19] : _T2_ = A + C
[dimanche 1 mars 2020 14:16:19] : _T3_ = _T2_ / 7
[dimanche 1 mars 2020 14:16:19] : _T4_ = _T3_ ^ 97
[dimanche 1 mars 2020 14:16:19] : _T5_ = _T1_ * _T4_
[dimanche 1 mars 2020 14:16:19] : _T6_ = _T5_ == 124
[dimanche 1 mars 2020 14:16:19] : _T7_ = 23 + _T6_
[dimanche 1 mars 2020 14:16:19] : _T8_ = R := _T7_

[dimanche 1 mars 2020 14:16:19] : R := 23+((0-E) * ((A + C)/7) ^ 97) == 124;            = _T8_
*************************************************************************************************************
[dimanche 1 mars 2020 14:16:19] : R A E B C < F B C < * + * := :=
[dimanche 1 mars 2020 14:16:19] : R A E _T1_ F _T2_ * + * := :=
[dimanche 1 mars 2020 14:16:19] : R A E _T1_ _T3_ + * := :=
[dimanche 1 mars 2020 14:16:19] : R A E _T4_ * := :=
[dimanche 1 mars 2020 14:16:19] : R A _T5_ := :=
[dimanche 1 mars 2020 14:16:19] : R _T6_ :=
[dimanche 1 mars 2020 14:16:19] : _T7_

[dimanche 1 mars 2020 14:16:19] : _T1_ = B < C
[dimanche 1 mars 2020 14:16:19] : _T2_ = B < C
[dimanche 1 mars 2020 14:16:19] : _T3_ = F * _T2_
[dimanche 1 mars 2020 14:16:19] : _T4_ = _T1_ + _T3_
[dimanche 1 mars 2020 14:16:19] : _T5_ = E * _T4_
[dimanche 1 mars 2020 14:16:19] : _T6_ = A := _T5_
[dimanche 1 mars 2020 14:16:19] : _T7_ = R := _T6_

[dimanche 1 mars 2020 14:16:19] : R := A := E * (B < C) + F * (B < C) ;               = _T7_
*************************************************************************************************************
[dimanche 1 mars 2020 14:16:19] : R E D C + - D || :=
[dimanche 1 mars 2020 14:16:19] : R E _T1_ - D || :=
[dimanche 1 mars 2020 14:16:19] : R _T2_ D || :=
[dimanche 1 mars 2020 14:16:19] : R _T3_ :=
[dimanche 1 mars 2020 14:16:19] : _T4_

[dimanche 1 mars 2020 14:16:19] : _T1_ = D + C
[dimanche 1 mars 2020 14:16:19] : _T2_ = E - _T1_
[dimanche 1 mars 2020 14:16:19] : _T3_ = _T2_ || D
[dimanche 1 mars 2020 14:16:19] : _T4_ = R := _T3_

[dimanche 1 mars 2020 14:16:19] : R := (E - D + C) || D ;                        = _T4_
*************************************************************************************************************
[dimanche 1 mars 2020 14:16:19] : R A B 0 C D & & | & :=
[dimanche 1 mars 2020 14:16:19] : R A B 0 _T1_ & | & :=
[dimanche 1 mars 2020 14:16:19] : R A B _T2_ | & :=
[dimanche 1 mars 2020 14:16:19] : R A _T3_ & :=
[dimanche 1 mars 2020 14:16:19] : R _T4_ :=
[dimanche 1 mars 2020 14:16:19] : _T5_

[dimanche 1 mars 2020 14:16:19] : _T1_ = C & D
[dimanche 1 mars 2020 14:16:19] : _T2_ = 0 & _T1_
[dimanche 1 mars 2020 14:16:19] : _T3_ = B | _T2_
[dimanche 1 mars 2020 14:16:19] : _T4_ = A & _T3_
[dimanche 1 mars 2020 14:16:19] : _T5_ = R := _T4_

[dimanche 1 mars 2020 14:16:19] : R := A & B |  0 & C & D ;                        = _T5_
*************************************************************************************************************
[dimanche 1 mars 2020 14:16:19] : R A B & 0 C & | D & :=
[dimanche 1 mars 2020 14:16:19] : R _T1_ _T2_ | D & :=
[dimanche 1 mars 2020 14:16:19] : R _T3_ D & :=
[dimanche 1 mars 2020 14:16:19] : R _T4_ :=
[dimanche 1 mars 2020 14:16:19] : _T5_

[dimanche 1 mars 2020 14:16:19] : _T1_ = A & B
[dimanche 1 mars 2020 14:16:19] : _T2_ = 0 & C
[dimanche 1 mars 2020 14:16:19] : _T3_ = _T1_ | _T2_
[dimanche 1 mars 2020 14:16:19] : _T4_ = _T3_ & D
[dimanche 1 mars 2020 14:16:19] : _T5_ = R := _T4_

[dimanche 1 mars 2020 14:16:19] : R := ((A & B) | ( 0 & C)) & D ;                     = _T5_
*************************************************************************************************************
[dimanche 1 mars 2020 14:16:19] : R A B & 0 | C D & & :=
[dimanche 1 mars 2020 14:16:19] : R _T1_ 0 | _T2_ & :=
[dimanche 1 mars 2020 14:16:19] : R _T3_ _T2_ & :=
[dimanche 1 mars 2020 14:16:19] : R _T4_ :=
[dimanche 1 mars 2020 14:16:19] : _T5_

[dimanche 1 mars 2020 14:16:19] : _T1_ = A & B
[dimanche 1 mars 2020 14:16:19] : _T2_ = C & D
[dimanche 1 mars 2020 14:16:19] : _T3_ = _T1_ | 0
[dimanche 1 mars 2020 14:16:19] : _T4_ = _T3_ & _T2_
[dimanche 1 mars 2020 14:16:19] : _T5_ = R := _T4_

[dimanche 1 mars 2020 14:16:19] : R := ((A & B) | 0) & (C & (D)) ;                  = _T5_
*************************************************************************************************************
[dimanche 1 mars 2020 14:16:19] : R 5 E 2 + 3 / * B 4 * * :=
[dimanche 1 mars 2020 14:16:19] : R 5 _T1_ 3 / * _T2_ * :=
[dimanche 1 mars 2020 14:16:19] : R 5 _T3_ * _T2_ * :=
[dimanche 1 mars 2020 14:16:19] : R _T4_ _T2_ * :=
[dimanche 1 mars 2020 14:16:19] : R _T5_ :=
[dimanche 1 mars 2020 14:16:19] : _T6_

[dimanche 1 mars 2020 14:16:19] : _T1_ = E + 2
[dimanche 1 mars 2020 14:16:19] : _T2_ = B * 4
[dimanche 1 mars 2020 14:16:19] : _T3_ = _T1_ / 3
[dimanche 1 mars 2020 14:16:19] : _T4_ = 5 * _T3_
[dimanche 1 mars 2020 14:16:19] : _T5_ = _T4_ * _T2_
[dimanche 1 mars 2020 14:16:19] : _T6_ = R := _T5_

[dimanche 1 mars 2020 14:16:19] : R := (5 * (E + 2) / 3) * (B * 4) ;                  = _T6_
*************************************************************************************************************
[dimanche 1 mars 2020 14:16:20] : Closing Log file
[dimanche 1 mars 2020 14:16:20] : *** Log Stoped ***--------------------------------------------------------------------------------------------------------------
« Last Edit: March 01, 2020, 03:30:50 PM by Grincheux »