comparison +scheme/Hypsyst2d.m @ 946:706d1c2b4199 feature/utux2D

Raname opts to type in a bunch of interface methods
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 05 Dec 2018 15:57:41 +0100
parents b9c98661ff5d
children 78db023a7fe3
comparison
equal deleted inserted replaced
945:af397cc35239 946:706d1c2b4199
91 otherwise 91 otherwise
92 error('No such boundary condition') 92 error('No such boundary condition')
93 end 93 end
94 end 94 end
95 95
96 function [closure, penalty] = interface(obj,boundary,neighbour_scheme,neighbour_boundary,opts) 96 function [closure, penalty] = interface(obj, boundary, neighbour_scheme, neighbour_boundary, type)
97 error('An interface function does not exist yet'); 97 error('Not implemented');
98 end 98 end
99 99
100 function N = size(obj) 100 function N = size(obj)
101 N = obj.m; 101 N = obj.m;
102 end 102 end