comparison +scheme/Heat2dVariable.m @ 910:b9c98661ff5d feature/utux2D

Change the name of the last interface method argument from type to opts in all schemes.
author Martin Almquist <malmquist@stanford.edu>
date Fri, 23 Nov 2018 20:39:40 -0800
parents 459eeb99130f
children 21394c78c72e
comparison
equal deleted inserted replaced
909:ab1759166a8c 910:b9c98661ff5d
194 otherwise 194 otherwise
195 error('No such boundary condition: type = %s',type); 195 error('No such boundary condition: type = %s',type);
196 end 196 end
197 end 197 end
198 198
199 function [closure, penalty] = interface(obj,boundary,neighbour_scheme,neighbour_boundary,type) 199 function [closure, penalty] = interface(obj,boundary,neighbour_scheme,neighbour_boundary,opts)
200 % u denotes the solution in the own domain 200 % u denotes the solution in the own domain
201 % v denotes the solution in the neighbour domain 201 % v denotes the solution in the neighbour domain
202 error('Interface not implemented'); 202 error('Interface not implemented');
203 end 203 end
204 204