Skip to content

split a string basic type away from symbolBase#203

Merged
perrydv merged 1 commit into
mainfrom
rearrange-string-type
Jun 9, 2026
Merged

split a string basic type away from symbolBase#203
perrydv merged 1 commit into
mainfrom
rearrange-string-type

Conversation

@perrydv

@perrydv perrydv commented Jun 9, 2026

Copy link
Copy Markdown
Contributor

Support for strings is still rudimentary. In issue #201 we saw that even returning a string triggered a warning because the type checking for return objects was based on the basic types of double, integer, and logical. However the string type also hijacked the same symbol type, resulting in an error in the Return error checking. Strings are a somewhat hybrid case because there is some commonality, especially if we can use Eigen Tensors to store and access non-scalars for strings and possible other kinds of elements. So this PR takes the approach of inserting a layer into the symbol class hierarchy. The new layer serves as a base class for any core type that might be scalar or not. Then symbolBasic (for double, integer, and logical, and also AD) derives from that, and a new symbolBasicString also derives from that. It meant that all code checking on or working with the symbolBasic type was not broken.

In addition I separated void into its own symbol class rather than also hijacking a special case of symbolBasic for this.

Tests passed, so this looks good to go.

Fixes #201

@perrydv perrydv merged commit d0ba862 into main Jun 9, 2026
5 checks passed
@perrydv perrydv deleted the rearrange-string-type branch June 9, 2026 02:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

warning when returning a 'string'

1 participant