fosstodon.org is one of the many independent Mastodon servers you can use to participate in the fediverse.
Fosstodon is an invite only Mastodon instance that is open to those who are interested in technology; particularly free & open source software. If you wish to join, contact us for an invite.

Administered by:

Server stats:

10K
active users

What is your opinion on (conditional) branching in your code?

Conditional branching includes things like (non-trivial) if statements, for statements, etc.

Urusan

Also, for those of you who haven't heard about this, even though conditional branching is a programming fundamental, it's not great for CPU performance (though a lot of work has gone into improving this to the point where you typically don't have to worry about this with modern CPU hardware and compilers) and there are programming styles which reduce or eschew branching, either for style reasons or to help with performance.

For instance, if you've heard that you should use a switch statement instead of if statements, that's to cut down on the number of branches for performance reasons. I think the switch is itself a conditional branch, but it's a single one regardless of how many conditions you have.

@urusan
do you mean things like APL/numpy-like array programming? or something else entirely?

@niplav There are a lot of different problem domains and approaches under this umbrella.

I don't know enough about APL to comment on it. As for numpy, you could definitely reframe certain problems that would normally involve lots of branching into a bunch of matrix calculations without branching.