DEV Community

Cover image for Code Smell 238 - Entangled Code
Maxi Contieri
Maxi Contieri

Posted on • Originally published at maximilianocontieri.com

2

Code Smell 238 - Entangled Code

You execute code. Move to the other stuff, and continue with the previous code

TL;DR: Don't mix your train of thought

Problems

  • Readability

  • Bad Scoping

Solutions

  1. Move the code close together

  2. Try to extract the method

Refactorings

Context

Entangled code is related beyond time and space.

You are reading the code, then skip to another subject and return to the first one.

Sample Code

Wrong

def planetary_properties(semi_major_axis,
                         incoming_radiation, reflected_radiation):
    Gravitational_Constant = 1.0    
    Sun_Mass = 1.0    
    # Up to here, there's a preparation
    # for the orbital period computation

    albedo = reflected_radiation / incoming_radiation
    # This is unrelated to the previous computation

    # You resume the first computation
    orbital_period_squared = (
        (4 * math.pi**2 * semi_major_axis**3) /
        (Gravitational_Constant * Sun_Mass)
    )
    retrun orbital_period, albedo
Enter fullscreen mode Exit fullscreen mode

Right

def planetary_properties(semi_major_axis,
                         incoming_radiation, reflected_radiation):
    Gravitational_Constant = 1.0    
    Sun_Mass = 1.0    
     orbital_period_squared = (
        (4 * math.pi**2 * semi_major_axis**3) /
        (Gravitational_Constant * Sun_Mass)
    )
    # This is related to the first computation part

    albedo = reflected_radiation / incoming_radiation
    # This is related to the second part

    # The final solution is to break the function into two
    # This is a trivial example for illustration purposes
    # Things usually get more complicated and entangled

    retrun orbital_period, albedo
Enter fullscreen mode Exit fullscreen mode

Detection

[X] Semi-Automatic

Some linters can infer scopes and make suggestions.

Tags

  • Readability

Level

[X] Beginner

AI Assistants

AI assistants suggest code without this mistake and improve this problem when asked.

Conclusion

This is a tiny tip and a short example of tidying

Relations

Disclaimer

Code Smells are my opinion.

Credits

Photo by Michael Hamments on Unsplash


Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it.

Brian Kernighan


This article is part of the CodeSmell Series.

Sentry blog image

How I fixed 20 seconds of lag for every user in just 20 minutes.

Our AI agent was running 10-20 seconds slower than it should, impacting both our own developers and our early adopters. See how I used Sentry Profiling to fix it in record time.

Read more

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay