numere-org / NumeRe

Framework for numerical computations, data analysis and visualisation
https://www.numere.org
GNU General Public License v3.0
17 stars 5 forks source link

Copying from and to table headlines with direct assignment does not work #212

Closed numeredev closed 1 month ago

numeredev commented 1 month ago

DESCRIPTION

Describe the bug Copying from and to table headlines using the direct assignment TAB() = TAB() with corresponding indices does not work (because not yet supported). The whole application crashes. It will work, if it is not a direct assignment. This is a regression to #168, therefore not yet critical.

To Reproduce Steps to reproduce the behavior:

  1. Create a table with some string values
  2. Try to copy them to a target table's headlines
  3. See error (crash)

Expected behavior Assignment works as expected

Screenshots If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

Additional context Add any other context about the problem here.

(Do not write below this line)


DEVS' SECTION

ANALYSIS

The mentioned change broke many other features and has to be reworked to allow things like TAB(:,1) = TAB(1,:) again. We'll do that by abstrahizing segments of code to be able to return to the original branch again.

IMPLEMENTATION STEPS

(see also our Wiki for implementation guidelines)

DOCUMENTATION STEPS

(see also our Wiki for further information)

PULL REQUEST