-- Forwarded message -
From: Walid AlMasri
Date: Sat, 27 Jun 2026, 14:11
Subject: Re: Python in Dual-Space software engineering
To: Alan Gauld
Thanks a lot Alan!
I believe this work is more about theoretical study that actual engineering
execution. It is about metrics performan
On 26/06/2026 18:51, Walid AlMasri via Python-list wrote:
> Hi All,
>
> I started a project inspired by my knowledge in physics in software
> engineering.
>
> I found one could find a framework based on convex analysis, optimization
> and duality theory to classify and diagonise programming langu
Thanks!
I started doing some new steps into optimization tool for diagnosing the
codes
for example the code
# Primal Space: High M(P), High C_cyc, Low CompD
def process_data(data):
total = 0
count = 0
for x in data:
if x > 0:
total += x * x
count += 1