How to compile several functions by once compile?

I see. How to compile several funstions? For instance, if I have add() and project() two functions, or the relation is y = project(add(x)), how to compile them?

Can I compile them together by just compiling the project() function?
Or should I compile these two functions perspectively?

Hello

  • if you will never call add directly with encrypted value, just compile directly the function f which is: f(x) = project(add(x))
  • if you plan to call add directly, have a look to Modules in the doc, there are made for that: With modules | Concrete