Talk:Abstraction-Filtration-Comparison test

Page contents not supported in other languages.
Source: Wikipedia, the free encyclopedia.

Original research and Primary sources issues

It's great that this article has been created, but it appears to be almost entirely

primary sources rather than secondary sources. The sole exception is the use of the Lemley source. It very much needs to be cleaned up, citing secondary sources, instead of the writer's own analysis of the case. TJRC (talk) 15:16, 29 September 2009 (UTC)[reply
]

External links modified

Hello fellow Wikipedians,

I have just modified 2 external links on Abstraction-Filtration-Comparison test. Please take a moment to review my edit. If you have any questions, or need the bot to ignore the links, or the page altogether, please visit this simple FaQ for additional information. I made the following changes:

When you have finished reviewing my changes, please set the checked parameter below to true or failed to let others know (documentation at {{

Sourcecheck
}}).

This message was posted before February 2018.

regular verification using the archive tool instructions below. Editors have permission to delete these "External links modified" talk page sections if they want to de-clutter talk pages, but see the RfC before doing mass systematic removals. This message is updated dynamically through the template {{source check
}} (last update: 18 January 2022).

Cheers.—InternetArchiveBot (Report bug) 01:06, 3 October 2016 (UTC)[reply]

External links modified

Hello fellow Wikipedians,

I have just modified one external link on Abstraction-Filtration-Comparison test. Please take a moment to review my edit. If you have any questions, or need the bot to ignore the links, or the page altogether, please visit this simple FaQ for additional information. I made the following changes:

When you have finished reviewing my changes, you may follow the instructions on the template below to fix any issues with the URLs.

This message was posted before February 2018.

regular verification using the archive tool instructions below. Editors have permission to delete these "External links modified" talk page sections if they want to de-clutter talk pages, but see the RfC before doing mass systematic removals. This message is updated dynamically through the template {{source check
}} (last update: 18 January 2022).

Cheers.—InternetArchiveBot (Report bug) 15:10, 25 June 2017 (UTC)[reply]

This legal test...

libstdc++ (and most C++ STL implementations) have copyrights slathered all over them, but I'm not sure that any of them can meet the legal requirements to be copyrightable. The ISO C++ standard is so strict on member functions, runtime complexity, traits, satisfied concepts, etc, that there's practically no room for variance.[1] The runtime complexity in particular can narrow some of the associative containers down to a single possible trie type, and the tries themselves are all rehashed so many times in so many codebases and computer science books that it would likely be impossible not to duplicate the majority of the code without badly affecting performance. I think the only leeway anything gets is the possibility of being less complex to execute than the standard requires, but this generally isn't possible without storage of extra data that messes up the memory usage requirements. One of my personal favorites was the stdbool.h header I found laying around that had around 60 lines of GPL copyright nonsense followed by:


#define false 0
#define true 1

That was it. Why, the spark of genius that created that masterpiece should certainly be awarded both a copyright and a presidential medal of honor. A Shortfall Of Gravitas (talk) 00:22, 8 March 2024 (UTC)[reply]

  1. ^ ISO. "ISO C++20 Standard (pages are just a portion of the STL requirements, more surround them)" (PDF). pp. 739–972.