Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
language:types2 [2024/07/18 16:26] – [Macros and Functions] rajitlanguage:types2 [2024/10/24 10:28] (current) – [Functions] rajit
Line 160: Line 160:
 adder and five-bit adder. adder and five-bit adder.
  
 +==== Default parameters ====
  
-===== Direction flags and user-defined types =====+When defining complex user-defined types with many parameters, it can be useful to have 
 +default parameter values. ACT has syntax to support default parameter values for trailing 
 +parameters in a template definition. 
 + 
 +<code act> 
 +template <pint N; pbool active_high = true> 
 +defproc driver(bool? inp; bool! outp) 
 +
 +  bool sig; 
 +  prs { 
 +    inp => sig- 
 +  } 
 +  [active_high -> prs { sig => outp- } 
 +  [] else -> sig = outp; 
 +  ] 
 +
 +</code> 
 +(Note: this is not a real signal driver, but the idea here is the you have a parameterized 
 +driver that can drive a fanout of ''N'' gates.) This definition has a default value for the  
 +''active_high'' parameter as ''true'' So an instance 
 +<code act> 
 +driver<4> x; 
 +</code> 
 +will have four production rules: 
 +<code act> 
 + x.inp -> sig- 
 +~x.inp -> sig+ 
 + sig -> x.outp- 
 +~sig -> x.outp+ 
 +</code> 
 +However, this behavior can be changed by using: 
 +<code act> 
 +driver<4,false> x; 
 +</code> 
 +In this case, ''sig'' will be connected to ''x.outp''
 + 
 +Note that ACT is very strict about type-checking; so, for example, ''driver<4>'' and ''driver<4,true>'' are //not// treated as the same type even though the default parameter value for the second template parameter is ''true''
 +===== Direction flags  =====
  
  
Line 205: Line 243:
 is detailed in the section on connections. is detailed in the section on connections.
  
-===== Macros and Functions =====+===== Macros and Functions within User-defined types =====
  
 User-defined types support additional methods (beyond the special ones for channels and data types). User-defined types support additional methods (beyond the special ones for channels and data types).
 These methods are of two types: These methods are of two types:
     * //macros//, which correspond to CHP fragments that are used for in-place substitution; and     * //macros//, which correspond to CHP fragments that are used for in-place substitution; and
-    * //functions// which are supported by [[language:types2:data#pure_structures|pure structures]], which are similar to traditional function calls.+    * //functions// which are supported by [[language:types2:data#pure_structures|pure structures]], which are similar to traditional [[language:expressions#functions|functions]]. 
 + 
 +==== Macros ==== 
 + 
 +==== Functions ====
  
 +=== Operator overloading ===