By using this site, you agree to the Privacy Policy and Terms of Use.
Accept
World of SoftwareWorld of SoftwareWorld of Software
  • News
  • Software
  • Mobile
  • Computing
  • Gaming
  • Videos
  • More
    • Gadget
    • Web Stories
    • Trending
    • Press Release
Search
  • Privacy
  • Terms
  • Advertise
  • Contact
Copyright © All Rights Reserved. World of Software.
Reading: Researchers propose a new model for readable, modular software
Share
Sign In
Notification Show More
Font ResizerAa
World of SoftwareWorld of Software
Font ResizerAa
  • Software
  • Mobile
  • Computing
  • Gadget
  • Gaming
  • Videos
Search
  • News
  • Software
  • Mobile
  • Computing
  • Gaming
  • Videos
  • More
    • Gadget
    • Web Stories
    • Trending
    • Press Release
Have an existing account? Sign In
Follow US
  • Privacy
  • Terms
  • Advertise
  • Contact
Copyright © All Rights Reserved. World of Software.
World of Software > News > Researchers propose a new model for readable, modular software
News

Researchers propose a new model for readable, modular software

News Room
Last updated: 2025/11/09 at 6:20 PM
News Room Published 9 November 2025
Share
Researchers propose a new model for readable, modular software
SHARE

Credit: CC0 Public domain

Coding with large language models (LLMs) is promising, but it also exposes some long-standing flaws in software: code that is messy, difficult to change securely, and often unclear about what’s really happening under the hood. Researchers at MIT’s Computer Science and Artificial Intelligence Laboratory (CSAIL) are charting a more “modular” path.

Their new approach breaks systems down into “concepts,” individual parts of a system, each designed to do one task well, and “syncs,” explicit rules that describe exactly how those pieces fit together. The result is software that is modular, more transparent and easier to understand.

A small domain-specific language (DSL) allows synchronizations to be expressed easily, in a form that LLMs can reliably generate. In a real-world case study, the team showed how this method can bring together functions that would otherwise be spread across multiple services. The article is published in the Proceedings of the 2025 ACM SIGPLAN International Symposium on New Ideas, New Paradigms, and Reflections on Programming and Software.

The team, including Daniel Jackson, an MIT professor of electrical engineering and computer science (EECS) and CSAIL associate director, and Eagon Meng, an EECS Ph.D. student, CSAIL affiliate and designer of the new synchronization DSL, explore this approach in their paper “What You See Is What It Does: A Structural Pattern for Readible Software,” which they presented at the Splash conference in Singapore in October.

The challenge, they explain, is that in most modern systems a single function is never completely isolated. For example, adding a ‘share’ button to a social platform like Instagram doesn’t happen in just one service. The functionality is spread across code that handles posting, notifications, user authentication, and more. All these pieces, despite being scattered throughout the code, must be carefully coordinated, and any change risks unintended side effects elsewhere.

Jackson calls this “feature fragmentation,” a central obstacle to software reliability. “The way we build software today, the functionality is not localized. You want to understand how sharing works, but you have to look for it in three or four different places, and when you find it, the connections are hidden in low-level code,” says Jackson.

Drafts and syncs are intended to address this issue. A concept bundles one coherent piece of functionality, such as sharing, liking, or following, along with its state and the actions it can take. Synchronizations, on the other hand, describe at a higher level how these concepts interact.

Instead of writing messy low-level integration code, developers can use a small domain-specific language to spell out these connections directly. In this DSL, the rules are simple and clear: the action of one concept can trigger another action, so that a change in one part of the state can remain in sync with another.

“Think of concepts as modules that are completely clean and independent. Synchronizations then act like contracts: they tell you exactly how concepts should communicate with each other. That’s powerful because it makes the system both easier for people to understand and easier for tools like LLMs to generate correctly,” says Jackson.

“Why can’t we read code like a book? We believe that software should be readable and written in terms of our understanding: our hope is that concepts refer to known phenomena, and that synchronizations represent our intuition about what happens when they come together,” says Meng.

The benefits extend beyond clarity. Because synchronizations are explicit and declarative, they can be analyzed, verified and of course generated by an LLM. This opens the door to safer, more automated software development, where AI assistants can suggest new features without introducing hidden side effects.

In their case study, the researchers mapped functions like liking, commenting, and sharing to a single concept, like a microservices architecture, but more modular. Without this pattern, these features were spread across many services, making them difficult to locate and test. Using the concepts-and-synchronization approach, each function was centralized and readable, while the synchronizations described exactly how the concepts interact.

The study also showed how synchronizations can eliminate common concerns such as error handling, response formatting, or persistent storage. Rather than embedding these details in each service, Sync can handle them once, ensuring consistency across the system.

More advanced directions are also possible. Synchronizations can coordinate distributed systems, keep replicas on different servers in line, or ensure that shared databases can communicate gracefully with each other. Weakening the synchronization semantics could enable eventual consistency while still maintaining clarity at the architectural level.

Jackson sees potential for a broader cultural shift in software development. One idea is to create “concept catalogs,” shared libraries of well-tested, domain-specific concepts. Application development could then become less a matter of piecing together code and more about selecting the right concepts and writing the synchronizations between them.

“Concepts could become a new kind of high-level programming language, with synchronizations if the programs are written in that language. It’s a way to expose the connections in software,” says Jackson. “Today we hide those connections in code. But if you can see them explicitly, you can reason about the software at a much higher level. You still have to deal with the inherent complexity of the interaction between functions. But now it’s overt, undistributed and unclear.”

“Building software for human use based on abstractions of underlying computing machines has burdened the world with software that is too often expensive, frustrating, and even dangerous to understand and use,” said Associate Professor Kevin Sullivan of the University of Virginia, who was not involved in the study.

“The consequences (such as in healthcare) have been devastating. Meng and Jackson flip the script and insist on building interactive software based on abstractions of human understanding, which they call “concepts.” They combine expressive mathematical logic and natural language to specify such purposeful abstractions, providing a basis for verifying their meanings, compiling them into systems, and refining them into programs suitable for human use. It is a new and important direction in the theory and practice of software design that worth keeping an eye on.”

“It’s been clear for years that we need better ways to describe and specify what we want software to do,” said Thomas Ball, an honorary professor at Lancaster University and affiliated faculty at the University of Washington, who also was not involved in the study. “The ability of LLMs to generate code has only fueled the specification fire. Meng and Jackson’s work in concept design provides a promising way to describe what we expect from software in a modular way. Their concepts and specifications are well suited to be combined with LLMs to realize the designer’s intentions.”

Looking ahead, the researchers hope that their work can influence the way both industry and academia think about software architecture in the age of AI. “For software to become more reliable, we need ways to write it that make its intentions transparent,” Jackson says. “Concepts and Syncs are a step toward that goal.”

More information:
Eagon Meng et al., What you see is what it does: a structural pattern for readable software, Proceedings of the 2025 ACM SIGPLAN International Symposium on New Ideas, New Paradigms, and Reflections on Programming and Software (2025). DOI: 10.1145/3759429.3762628

Provided by the Massachusetts Institute of Technology

Quote: Researchers propose a new model for legible, modular software (2025, November 6), retrieved November 9, 2025 from https://techxplore.com/news/2025-11-legible-modular-software.html

This document is copyrighted. Except for fair dealing purposes for the purpose of private study or research, no part may be reproduced without written permission. The content is provided for informational purposes only.

Sign Up For Daily Newsletter

Be keep up! Get the latest breaking news delivered straight to your inbox.
By signing up, you agree to our Terms of Use and acknowledge the data practices in our Privacy Policy. You may unsubscribe at any time.
Share This Article
Facebook Twitter Email Print
Share
What do you think?
Love0
Sad0
Happy0
Sleepy0
Angry0
Dead0
Wink0
Previous Article Hallmark Christmas movies 2025 — when and where to stream all 24 original movies Hallmark Christmas movies 2025 — when and where to stream all 24 original movies
Next Article Today's NYT Strands Hints, Answer and Help for Nov. 10 #617 – CNET Today's NYT Strands Hints, Answer and Help for Nov. 10 #617 – CNET
Leave a comment

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Stay Connected

248.1k Like
69.1k Follow
134k Pin
54.3k Follow

Latest News

Ant Group deploys domestic GPU cluster with tens of thousands of units · TechNode
Ant Group deploys domestic GPU cluster with tens of thousands of units · TechNode
Computing
You Can Use Your Old TV As A Smart Mirror – Here’s How – BGR
You Can Use Your Old TV As A Smart Mirror – Here’s How – BGR
News
Next Wave: Why Africa’s tech future needs a political reality check
Next Wave: Why Africa’s tech future needs a political reality check
Computing
We need to build psychological readiness into cyber security | Computer Weekly
We need to build psychological readiness into cyber security | Computer Weekly
News

You Might also Like

You Can Use Your Old TV As A Smart Mirror – Here’s How – BGR
News

You Can Use Your Old TV As A Smart Mirror – Here’s How – BGR

5 Min Read
We need to build psychological readiness into cyber security | Computer Weekly
News

We need to build psychological readiness into cyber security | Computer Weekly

5 Min Read
Avast Premium Business Security Review: Full Remote Security Management for Company Computers
News

Avast Premium Business Security Review: Full Remote Security Management for Company Computers

14 Min Read
Google reportedly blocks 749 million Anna’s Archive URLs
News

Google reportedly blocks 749 million Anna’s Archive URLs

3 Min Read
//

World of Software is your one-stop website for the latest tech news and updates, follow us now to get the news that matters to you.

Quick Link

  • Privacy Policy
  • Terms of use
  • Advertise
  • Contact

Topics

  • Computing
  • Software
  • Press Release
  • Trending

Sign Up for Our Newsletter

Subscribe to our newsletter to get our newest articles instantly!

World of SoftwareWorld of Software
Follow US
Copyright © All Rights Reserved. World of Software.
Welcome Back!

Sign in to your account

Lost your password?