partiallength
Partiallength is a concept used in mathematics and computer science to denote a length measure associated with a partially constructed object. It captures how far an intended final object has progressed, rather than its full size. The notion is often applied in incremental processes, such as constructive algorithms, parsers, or data-structure construction, where a project evolves through discrete steps or partial views.
In a formal setting, consider a final object F built by a finite sequence of steps S
Example: building a list of n items; after k items, the partiallength is k. Example: depth-limited graph
Partiallength is typically monotone nondecreasing with extension of the partial object, and is bounded above by
See also: length, progress metric, incremental computation, partial order, complexity measure.