Web Development
sa-c.txt
Associated article: SA-C: Single Assignment C
Tags: Web Development
Published source code examples accompanying the article by Willem Bohm, Ross Beveridge, Bruce Draper, Charles Ross, and Monica Chawathe, in which they examine SA-C--a high-level C- like language with single assignment semantics, was designed for building applications that run on reconfigurable computing systems, such as Field Programmable Gate Arrays (FPGAs).
SA-C: Single Assignment C
by Willem Bohm, Ross Beveridge, Bruce Draper, Charles Ross, and Monica Chawathe
Example 1:
for each window in image {
best_score, probe_set_index =
for all probe_sets {
hit_count =
for each probe in probe_set
return(...


